diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-15 05:25:20 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-15 05:25:20 +0000 |
commit | bf3487c0b1502aca78e91f7217b160b4242ec6c7 (patch) | |
tree | 4ae7e5755ff2fc43a45ef03ad53f539a1fe5b2ef /modules/forum/forum.install | |
parent | a9080f70edcf3a2c7523518621848cbfaffa6ccc (diff) | |
download | brdo-bf3487c0b1502aca78e91f7217b160b4242ec6c7.tar.gz brdo-bf3487c0b1502aca78e91f7217b160b4242ec6c7.tar.bz2 |
#76681 by sammys, sync posgres install and change unsigned annotation.
Diffstat (limited to 'modules/forum/forum.install')
-rw-r--r-- | modules/forum/forum.install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/forum/forum.install b/modules/forum/forum.install index c11eee108..14cbe03c7 100644 --- a/modules/forum/forum.install +++ b/modules/forum/forum.install @@ -16,9 +16,9 @@ function forum_install() { break; case 'pgsql': db_query("CREATE TABLE {forum} ( - nid uint NOT NULL default '0', - vid uint NOT NULL default '0', - tid uint NOT NULL default '0', + nid int_unsigned NOT NULL default '0', + vid int_unsigned NOT NULL default '0', + tid int_unsigned NOT NULL default '0', PRIMARY KEY (vid) )"); db_query("CREATE INDEX {forum}_nid_idx ON {forum} (nid)"); |