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 9d7479591d8..bdb5e5854b6 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 @@ -87,3 +87,14 @@ ALTER TABLE llx_socpeople ADD COLUMN whatsapp varchar(255) after skype; ALTER TABLE llx_website CHANGE COLUMN fk_user_create fk_user_creat integer; 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), + leftpos float, + toppos float, + floor int(3) +) ENGINE=innodb; + diff --git a/htdocs/takepos/sql/llx_takepos_floor_tables.sql b/htdocs/install/mysql/tables/llx_takepos_floor_tables.sql similarity index 100% rename from htdocs/takepos/sql/llx_takepos_floor_tables.sql rename to htdocs/install/mysql/tables/llx_takepos_floor_tables.sql