mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Split LimitCollectionCreationDeletion
into two database columns (#4709)
* Add new columns to `dbo.Organization` & its references * Feed existing data into new `dbo.Organization` column * Update Entity Framework database definitions * Move new EF columns out of the core entity definition * Generate Entity Framework migrations * Feed existing data into new `Organization` Entity Framework columns * Add a where clause to SQL migration
This commit is contained in:
@ -83,9 +83,14 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<bool>("LimitCollectionCreation")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool>("LimitCollectionCreationDeletion")
|
||||
.HasColumnType("INTEGER")
|
||||
.HasDefaultValue(true);
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool>("LimitCollectionDeletion")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int?>("MaxAutoscaleSeats")
|
||||
.HasColumnType("INTEGER");
|
||||
|
Reference in New Issue
Block a user