diff --git a/mysql/mysql.sql b/mysql/mysql.sql index bb0a80c2f50..5ba78a28db1 100644 --- a/mysql/mysql.sql +++ b/mysql/mysql.sql @@ -253,6 +253,17 @@ create table llx_fichinter UNIQUE INDEX (ref) ); +create table llx_soc_events +( + rowid integer AUTO_INCREMENT PRIMARY KEY, -- public id + fk_soc int NOT NULL, -- + dateb datetime NOT NULL, -- begin date + datee datetime NOT NULL, -- end date + title varchar(100) NOT NULL, + url varchar(255), + description text +); + create table llx_const ( rowid integer AUTO_INCREMENT PRIMARY KEY, @@ -280,17 +291,6 @@ create table llx_compta ); -create table soc_events -( - rowid integer AUTO_INCREMENT PRIMARY KEY, -- public id - fk_soc int NOT NULL, -- - dateb datetime NOT NULL, -- begin date - datee datetime NOT NULL, -- end date - title varchar(100) NOT NULL, - url varchar(255), - description text -); - create table llx_compta_account ( rowid integer AUTO_INCREMENT PRIMARY KEY,