add migrations

This commit is contained in:
Вячеслав 2025-05-20 16:19:54 +05:00
parent 6898590cec
commit f61cbac32a
3 changed files with 405 additions and 1 deletions

View file

@ -110,7 +110,7 @@ namespace SurveyBackend.Infrastructure.Data.Migrations
b.HasIndex("QuestionId");
b.ToTable("AnswerVariant");
b.ToTable("AnswerVariants");
});
modelBuilder.Entity("SurveyLib.Core.Models.Completion", b =>
@ -167,6 +167,9 @@ namespace SurveyBackend.Infrastructure.Data.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<DateTime>("CreatedAt")
.HasColumnType("TEXT");
b.Property<int?>("CreatedBy")
.HasColumnType("INTEGER");