Skip to content
Snippets Groups Projects
Commit 6d843e76 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Merge pull request #614 from FHenry/develop

Add adherent type extrafield extrafield table in migration script
parents 0b045a2d e3fd60c7
No related branches found
No related tags found
No related merge requests found
...@@ -15,3 +15,11 @@ ...@@ -15,3 +15,11 @@
-- -- VPGSQL8.2 DELETE FROM llx_usergroup_user WHERE fk_user NOT IN (SELECT rowid from llx_user); -- -- VPGSQL8.2 DELETE FROM llx_usergroup_user WHERE fk_user NOT IN (SELECT rowid from llx_user);
-- -- VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup); -- -- VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);
create table llx_adherent_type_extrafields
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
fk_object integer NOT NULL,
import_key varchar(14) -- import key
) ENGINE=innodb;
ALTER TABLE llx_adherent_type_extrafields ADD INDEX idx_adherent_type_extrafields (fk_object);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment