mirror of
https://github.com/slawkens/myaac.git
synced 2026-01-07 07:27:43 +01:00
Refactor migrations with $up & $down
This commit is contained in:
8
system/migrations/1-hooks.sql
Normal file
8
system/migrations/1-hooks.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE `myaac_hooks`
|
||||
(
|
||||
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`name` VARCHAR(30) NOT NULL DEFAULT '',
|
||||
`type` INT(2) NOT NULL DEFAULT 0,
|
||||
`file` VARCHAR(100) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
|
||||
Reference in New Issue
Block a user