mirror of
https://github.com/slawkens/myaac.git
synced 2025-12-23 00:47:11 +01:00
Refactor migrations with $up & $down
This commit is contained in:
9
system/migrations/12-items.sql
Normal file
9
system/migrations/12-items.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE `myaac_items`
|
||||
(
|
||||
`id` INT(11) NOT NULL,
|
||||
`article` VARCHAR(5) NOT NULL DEFAULT '',
|
||||
`name` VARCHAR(50) NOT NULL DEFAULT '',
|
||||
`plural` VARCHAR(50) NOT NULL DEFAULT '',
|
||||
`attributes` VARCHAR(500) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
|
||||
Reference in New Issue
Block a user