mirror of
https://github.com/slawkens/myaac.git
synced 2026-01-13 10:01:30 +01:00
Refactor migrations with $up & $down
This commit is contained in:
9
system/migrations/36-settings.sql
Normal file
9
system/migrations/36-settings.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE `myaac_settings`
|
||||
(
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`key` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`value` TEXT NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `key` (`key`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
|
||||
Reference in New Issue
Block a user