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 1/2] 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; From 2b8ec8db1fac4e73b6b17562a41f9d03b4ca466d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Sun, 30 Sep 2018 10:33:52 +0200 Subject: [PATCH 2/2] Update llx_takepos_floor_tables.sql --- .../mysql/tables/llx_takepos_floor_tables.sql | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/htdocs/install/mysql/tables/llx_takepos_floor_tables.sql b/htdocs/install/mysql/tables/llx_takepos_floor_tables.sql index 943f8e60b63..c8cae17b5a2 100644 --- a/htdocs/install/mysql/tables/llx_takepos_floor_tables.sql +++ b/htdocs/install/mysql/tables/llx_takepos_floor_tables.sql @@ -15,12 +15,12 @@ CREATE TABLE llx_takepos_floor_tables( - -- BEGIN MODULEBUILDER FIELDS - rowid INTEGER AUTO_INCREMENT PRIMARY KEY, - entity INTEGER DEFAULT 1 NOT NULL, - label VARCHAR(255), + -- BEGIN MODULEBUILDER FIELDS + rowid integer AUTO_INCREMENT PRIMARY KEY, + entity integer DEFAULT 1 NOT NULL, + label varchar(255), leftpos float, - toppos float, - floor int(3) - -- END MODULEBUILDER FIELDS -) ENGINE=innodb; \ No newline at end of file + toppos float, + floor smallint + -- END MODULEBUILDER FIELDS +) ENGINE=innodb;