Skip to content

Commit

Permalink
Remove unused myaac_commands table from schema
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Mar 21, 2020
1 parent 90d691f commit 64de469
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions install/includes/schema.sql
Expand Up @@ -48,17 +48,6 @@ CREATE TABLE `myaac_changelog`

INSERT INTO `myaac_changelog` (`id`, `type`, `where`, `date`, `body`, `hidden`) VALUES (1, 3, 2, UNIX_TIMESTAMP(), 'MyAAC installed. (:', 0);

CREATE TABLE `myaac_commands`
(
`id` INT(11) NOT NULL AUTO_INCREMENT,
`words` VARCHAR(30) NOT NULL DEFAULT 0,
`description` VARCHAR(300) NOT NULL,
`ordering` INT(11) NOT NULL DEFAULT 0,
`hidden` TINYINT(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE (`words`)
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;

CREATE TABLE `myaac_config`
(
`id` INT(11) NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit 64de469

Please sign in to comment.