From: Vincent Zanotti Date: Wed, 18 Jun 2008 19:24:36 +0000 (+0200) Subject: Also uses int in database to represent user ids (Cf. #844 and 7fe2cd86). X-Git-Tag: xorg/1.0.0~332^2~563 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=6337709ae1d9f27bd6493cbe793e1e06b4d71de8;p=platal.git Also uses int in database to represent user ids (Cf. #844 and 7fe2cd86). Signed-off-by: Vincent Zanotti --- diff --git a/upgrade/fusionax-0.0.1/02_networking.sql b/upgrade/fusionax-0.0.1/02_networking.sql index a266038..64cbc8f 100644 --- a/upgrade/fusionax-0.0.1/02_networking.sql +++ b/upgrade/fusionax-0.0.1/02_networking.sql @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS `profile_networking_enum` ( ) CHARSET=utf8 COMMENT='types of networking addresses'; CREATE TABLE IF NOT EXISTS `profile_networking` ( - `uid` smallint unsigned NOT NULL COMMENT 'user id', + `uid` int NOT NULL COMMENT 'user id', `nwid` tinyint unsigned NOT NULL COMMENT 'number of the address for the user', `network_type` tinyint unsigned NOT NULL, `address` varchar(255) NOT NULL,