mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 09:02:48 -05:00
[EC-427] Provider table Type and BillingPhone MySql migrations
This commit is contained in:
@ -16,7 +16,7 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "6.0.4")
|
||||
.HasAnnotation("ProductVersion", "6.0.12")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
||||
|
||||
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.AuthRequest", b =>
|
||||
@ -842,6 +842,9 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
b.Property<string>("BillingEmail")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("BillingPhone")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("BusinessAddress1")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
@ -875,6 +878,9 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
b.Property<byte>("Status")
|
||||
.HasColumnType("tinyint unsigned");
|
||||
|
||||
b.Property<byte>("Type")
|
||||
.HasColumnType("tinyint unsigned");
|
||||
|
||||
b.Property<bool>("UseEvents")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
|
Reference in New Issue
Block a user