mirror of
https://github.com/slawkens/myaac.git
synced 2025-12-21 16:07:13 +01:00
Refactor migrations with $up & $down
This commit is contained in:
10
system/migrations/22-z_polls.sql
Normal file
10
system/migrations/22-z_polls.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE `z_polls` (
|
||||
`id` int(11) NOT NULL auto_increment,
|
||||
`question` varchar(255) NOT NULL,
|
||||
`description` varchar(255) NOT NULL,
|
||||
`end` int(11) NOT NULL DEFAULT 0,
|
||||
`start` int(11) NOT NULL DEFAULT 0,
|
||||
`answers` int(11) NOT NULL DEFAULT 0,
|
||||
`votes_all` int(11) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
|
||||
Reference in New Issue
Block a user