1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 08:43:27 +00:00

fixup seededData vs playData migrations

This commit is contained in:
Matt Gibson
2025-11-17 14:45:38 -08:00
parent 14044ff5fb
commit 1ebfac18a2
13 changed files with 404 additions and 433 deletions

View File

@@ -1657,28 +1657,6 @@ namespace Bit.MySqlMigrations.Migrations
});
});
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.SeededData", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)");
b.Property<DateTime>("CreationDate")
.HasColumnType("datetime(6)");
b.Property<string>("Data")
.IsRequired()
.HasColumnType("longtext");
b.Property<string>("RecipeName")
.IsRequired()
.HasColumnType("longtext");
b.HasKey("Id");
b.ToTable("SeededData");
});
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Send", b =>
{
b.Property<Guid>("Id")