mirror of
https://github.com/slawkens/myaac.git
synced 2025-12-31 20:37:11 +01:00
Refactor migrations with $up & $down
This commit is contained in:
6
system/migrations/22-z_polls_answers.sql
Normal file
6
system/migrations/22-z_polls_answers.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE `z_polls_answers` (
|
||||
`poll_id` int(11) NOT NULL,
|
||||
`answer_id` int(11) NOT NULL,
|
||||
`answer` varchar(255) NOT NULL,
|
||||
`votes` int(11) NOT NULL DEFAULT 0
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
|
||||
Reference in New Issue
Block a user