mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 01:22:50 -05:00
[EC-427] Added sqlite migration
This commit is contained in:
@ -15,7 +15,7 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
protected override void BuildModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder.HasAnnotation("ProductVersion", "6.0.4");
|
||||
modelBuilder.HasAnnotation("ProductVersion", "6.0.12");
|
||||
|
||||
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.AuthRequest", b =>
|
||||
{
|
||||
@ -840,6 +840,9 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
b.Property<string>("BillingEmail")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("BillingPhone")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("BusinessAddress1")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
@ -873,6 +876,9 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
b.Property<byte>("Status")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<byte>("Type")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool>("UseEvents")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
|
Reference in New Issue
Block a user