summaryrefslogtreecommitdiff
path: root/modules/profile/profile.install
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-15 05:25:20 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-15 05:25:20 +0000
commitbf3487c0b1502aca78e91f7217b160b4242ec6c7 (patch)
tree4ae7e5755ff2fc43a45ef03ad53f539a1fe5b2ef /modules/profile/profile.install
parenta9080f70edcf3a2c7523518621848cbfaffa6ccc (diff)
downloadbrdo-bf3487c0b1502aca78e91f7217b160b4242ec6c7.tar.gz
brdo-bf3487c0b1502aca78e91f7217b160b4242ec6c7.tar.bz2
#76681 by sammys, sync posgres install and change unsigned annotation.
Diffstat (limited to 'modules/profile/profile.install')
-rw-r--r--modules/profile/profile.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.install b/modules/profile/profile.install
index c4a8f2f9e..f6258607b 100644
--- a/modules/profile/profile.install
+++ b/modules/profile/profile.install
@@ -54,8 +54,8 @@ function profile_install() {
db_query("CREATE INDEX {profile_fields}_category_idx ON {profile_fields} (category)");
db_query("CREATE TABLE {profile_values} (
- fid uint default '0',
- uid uint default '0',
+ fid int_unsigned default '0',
+ uid int_unsigned default '0',
value text
)");
db_query("CREATE INDEX {profile_values}_uid_idx ON {profile_values} (uid)");