Add poll system for Patrons Circle

This commit is contained in:
Alex Cabal 2022-06-29 16:51:45 -05:00
parent 3555d53615
commit 2ef5ce6551
44 changed files with 717 additions and 98 deletions

View file

@ -0,0 +1,8 @@
CREATE TABLE `PollItems` (
`PollItemId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`PollId` int(10) unsigned NOT NULL,
`Name` varchar(255) NOT NULL,
`Description` text DEFAULT NULL,
`SortOrder` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`PollItemId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;