mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
[AC 1427]Add New Organisation Properties Update DB Objects and create migration (#2980)
* Add new properties to organization * Add new properties to organization * Create migration * Add the columns to the view * Fix the syntax error * Change the namespaces * Remove the comma on the stripe file * Remove the nulls * Resolving the PR comments * Add a refresh for OrganizationView * Remove the True default values * Resolve the comments
This commit is contained in:
@ -562,6 +562,12 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
b.Property<int?>("MaxAutoscaleSeats")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int?>("MaxAutoscaleSmSeats")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int?>("MaxAutoscaleSmServiceAccounts")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<short?>("MaxCollections")
|
||||
.HasColumnType("smallint");
|
||||
|
||||
@ -600,6 +606,12 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
b.Property<bool>("SelfHost")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
b.Property<int?>("SmSeats")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int?>("SmServiceAccounts")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<byte>("Status")
|
||||
.HasColumnType("tinyint unsigned");
|
||||
|
||||
@ -630,6 +642,9 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
b.Property<bool>("UseKeyConnector")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
b.Property<bool>("UsePasswordManager")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
b.Property<bool>("UsePolicies")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
|
Reference in New Issue
Block a user