1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 07:13:39 +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

@@ -1662,28 +1662,6 @@ namespace Bit.PostgresMigrations.Migrations
});
});
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.SeededData", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("uuid");
b.Property<DateTime>("CreationDate")
.HasColumnType("timestamp with time zone");
b.Property<string>("Data")
.IsRequired()
.HasColumnType("text");
b.Property<string>("RecipeName")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("SeededData");
});
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Send", b =>
{
b.Property<Guid>("Id")