Skip to content

Commit

Permalink
Gallery module version 23, with the failed_logins table.
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat committed Jan 31, 2010
1 parent 2bfcec9 commit c8a8097
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion installer/install.sql
Expand Up @@ -74,6 +74,17 @@ CREATE TABLE {comments} (
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
DROP TABLE IF EXISTS {failed_logins};
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE {failed_logins} (
`id` int(9) NOT NULL auto_increment,
`count` int(9) NOT NULL,
`name` varchar(255) NOT NULL,
`time` int(9) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
DROP TABLE IF EXISTS {graphics_rules};
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
Expand Down Expand Up @@ -228,7 +239,7 @@ CREATE TABLE {modules} (
UNIQUE KEY `name` (`name`)
) AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
INSERT INTO {modules} VALUES (1,1,'gallery',22);
INSERT INTO {modules} VALUES (1,1,'gallery',23);
INSERT INTO {modules} VALUES (2,1,'user',2);
INSERT INTO {modules} VALUES (3,1,'comment',2);
INSERT INTO {modules} VALUES (4,1,'organize',1);
Expand Down

0 comments on commit c8a8097

Please sign in to comment.