Browse Source

update install

Nathaniel van Diepen 10 years ago
parent
commit
278c4ce152
1 changed files with 1 additions and 0 deletions
  1. 1 0
      install/install.sql

+ 1 - 0
install/install.sql

@@ -208,6 +208,7 @@ DROP TABLE IF EXISTS `statuses`;
 CREATE TABLE IF NOT EXISTS `statuses` (
   `id` int(100) NOT NULL AUTO_INCREMENT,
   `name` varchar(100) NOT NULL,
+  `isopen` tinyint(1) NOT NULL DEFAULT '1',
   PRIMARY KEY (`id`),
   UNIQUE KEY `name` (`name`)
 ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;