add migrations
This commit is contained in:
parent
6898590cec
commit
f61cbac32a
3 changed files with 405 additions and 1 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue