updated main database imports

This commit is contained in:
Remy Sharp 2013-02-21 10:47:41 +00:00
parent 307f8e7566
commit 74accda5b2
2 changed files with 3 additions and 1 deletions

View File

@ -49,6 +49,7 @@ CREATE TABLE `owners` (
`html` tinyint(1) NOT NULL DEFAULT '0',
`css` tinyint(1) NOT NULL DEFAULT '0',
`javascript` tinyint(1) NOT NULL DEFAULT '0',
`archive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name_url` (`name`,`url`,`revision`),
KEY `last_updated` (`name`,`last_updated`)

View File

@ -7,7 +7,8 @@ CREATE TABLE IF NOT EXISTS `owners` (
`summary` VARCHAR(255) NOT NULL DEFAULT '',
`html` INTEGER DEFAULT '0',
`css` INTEGER DEFAULT '0',
`javascript` INTEGER DEFAULT '0'
`javascript` INTEGER DEFAULT '0',
`archive` INTEGER DEFAULT '0'
);
CREATE TABLE IF NOT EXISTS `ownership` (