diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-01-30 20:40:28 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-30 20:40:28 -0800 |
commit | c8a8097ef2ebbb78d7d20b99f1ea2af3da946bca (patch) | |
tree | fca78a45928d3178c2cd8e2450794ac4ca64281c | |
parent | 2bfcec9620814a6f3d0163a174d7ba90efef369d (diff) |
Gallery module version 23, with the failed_logins table.
-rw-r--r-- | installer/install.sql | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/installer/install.sql b/installer/install.sql index a5eec229..e64a961e 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -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; @@ -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); |