diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-03-27 11:38:37 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-03-27 11:38:37 -0700 |
commit | c12c43a415cbbe172687f888c1ae388b7f4e4451 (patch) | |
tree | f404c692e2f7278bf4df22abf4aa649c824b797f /installer/install.sql | |
parent | 10785b1e820c5e10d982c6b49125903886f7b889 (diff) |
A little more work on kandsten's fix for IPv6 support in
10785b1e820c5e10d982c6b49125903886f7b889:
- some style cleanup
- bump the module version in module.info
- rebuild the installer.sql
Diffstat (limited to 'installer/install.sql')
-rw-r--r-- | installer/install.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/installer/install.sql b/installer/install.sql index 865cb2a4..77cda72b 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -67,8 +67,8 @@ CREATE TABLE {comments} ( `server_http_referer` varchar(255) DEFAULT NULL, `server_http_user_agent` varchar(128) DEFAULT NULL, `server_query_string` varchar(64) DEFAULT NULL, - `server_remote_addr` varchar(32) DEFAULT NULL, - `server_remote_host` varchar(64) DEFAULT NULL, + `server_remote_addr` varchar(40) DEFAULT NULL, + `server_remote_host` varchar(255) DEFAULT NULL, `server_remote_port` varchar(16) DEFAULT NULL, `state` varchar(15) DEFAULT 'unpublished', `text` text, @@ -246,7 +246,7 @@ CREATE TABLE {modules} ( /*!40101 SET character_set_client = @saved_cs_client */; INSERT INTO {modules} VALUES (1,1,'gallery',46,1); INSERT INTO {modules} VALUES (2,1,'user',3,2); -INSERT INTO {modules} VALUES (3,1,'comment',3,3); +INSERT INTO {modules} VALUES (3,1,'comment',4,3); INSERT INTO {modules} VALUES (4,1,'organize',4,4); INSERT INTO {modules} VALUES (5,1,'info',2,5); INSERT INTO {modules} VALUES (6,1,'rss',1,6); |