From: Vincent Zanotti Date: Sat, 5 Apr 2008 20:58:56 +0000 (+0200) Subject: Fixes the "user_id" column type in table gapps_queue. X-Git-Tag: xorg/0.9.16~25 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=45e9910e4f0213fd1f6266eee0be725ffbc1fb38;p=platal.git Fixes the "user_id" column type in table gapps_queue. Signed-off-by: Vincent Zanotti --- diff --git a/upgrade/0.9.16/06_google_apps.sql b/upgrade/0.9.16/06_google_apps.sql index 1ad53f3..5947f34 100644 --- a/upgrade/0.9.16/06_google_apps.sql +++ b/upgrade/0.9.16/06_google_apps.sql @@ -54,8 +54,8 @@ CREATE TABLE IF NOT EXISTS `gapps_accounts` ( CREATE TABLE IF NOT EXISTS `gapps_queue` ( -- Queue identification fields. q_id INT NOT NULL AUTO_INCREMENT, - q_owner_id SMALLINT DEFAULT NULL, - q_recipient_id SMALLINT DEFAULT NULL, + q_owner_id SMALLINT UNSIGNED DEFAULT NULL, + q_recipient_id SMALLINT UNSIGNED DEFAULT NULL, -- Queue management information. p_entry_date DATETIME NOT NULL,