forked from Sarah/Lieb-Website
added automatic deletion of polls
This commit is contained in:
parent
b6dd3ff9c4
commit
ac3cc69b68
7 changed files with 846 additions and 7 deletions
|
@ -507,8 +507,15 @@ namespace Lieb.Migrations
|
|||
b.Property<int>("AnswerType")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<DateTimeOffset>("CreatedAt")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<bool>("IsAutoPoll")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Question")
|
||||
.IsRequired()
|
||||
.HasMaxLength(200)
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int?>("RaidId")
|
||||
|
@ -553,6 +560,7 @@ namespace Lieb.Migrations
|
|||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int?>("PollId")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue