Skip to content
Snippets Groups Projects
Commit e3fd60c7 authored by Florian Henry's avatar Florian Henry
Browse files

Add adherent type extrafield extrafield table in migration script

parent 6a964d10
No related branches found
No related tags found
No related merge requests found
......@@ -15,3 +15,11 @@
-- -- 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);
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