From 926c23b7aed49dd2329769526dfe53c7d6ef6254 Mon Sep 17 00:00:00 2001 From: Gerhard Jungwirth Date: Thu, 20 Sep 2018 11:32:35 +0200 Subject: [PATCH] TT#41627 iCal tables make all ids unsigned Change-Id: I72194e9f2a06ca1c84906d29efacaeba2a164592 --- db_scripts/diff/15429.up | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_scripts/diff/15429.up b/db_scripts/diff/15429.up index 4e700c50..61a48fef 100644 --- a/db_scripts/diff/15429.up +++ b/db_scripts/diff/15429.up @@ -3,8 +3,8 @@ USE provisioning; CREATE TABLE `voip_time_sets` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `reseller_id` int(11) NOT NULL, - `contract_id` int(11), + `reseller_id` int(11) unsigned NOT NULL, + `contract_id` int(11) unsigned, `subscriber_id` int(11) unsigned, `name` varchar(90) NOT NULL, PRIMARY KEY (`id`),