From 6f48f37fa0aebf015053085915a5b9ec7a689500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Sun, 30 Sep 2018 10:31:08 +0200 Subject: [PATCH] Update 8.0.0-9.0.0.sql --- htdocs/install/mysql/migration/8.0.0-9.0.0.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/install/mysql/migration/8.0.0-9.0.0.sql b/htdocs/install/mysql/migration/8.0.0-9.0.0.sql index bdb5e5854b6..e197c321a0e 100644 --- a/htdocs/install/mysql/migration/8.0.0-9.0.0.sql +++ b/htdocs/install/mysql/migration/8.0.0-9.0.0.sql @@ -90,11 +90,11 @@ ALTER TABLE llx_website_page CHANGE COLUMN fk_user_create fk_user_creat integer; CREATE TABLE llx_takepos_floor_tables( - rowid INTEGER AUTO_INCREMENT PRIMARY KEY, - entity INTEGER DEFAULT 1 NOT NULL, - label VARCHAR(255), + rowid integer AUTO_INCREMENT PRIMARY KEY, + entity integer DEFAULT 1 NOT NULL, + label varchar(255), leftpos float, - toppos float, - floor int(3) + toppos float, + floor smallint ) ENGINE=innodb;