forked from Sarah/Lieb-Website
Added minUsers and Polls
This commit is contained in:
parent
cb1dbfbf98
commit
1d999e89bf
8 changed files with 45 additions and 10 deletions
|
@ -501,6 +501,12 @@ namespace Lieb.Migrations
|
|||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool>("AllowCustomAnswer")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("AnswerType")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Question")
|
||||
.IsRequired()
|
||||
.HasColumnType("TEXT");
|
||||
|
@ -519,6 +525,10 @@ namespace Lieb.Migrations
|
|||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Answer")
|
||||
.IsRequired()
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int?>("PollId")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue