Update llx_adherent_type_lang.sql

This commit is contained in:
ptibogxiv 2019-09-17 14:03:55 +02:00 committed by GitHub
parent 430ffae8ad
commit 4c59f6bffa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,13 +18,13 @@
-- --
-- ============================================================================ -- ============================================================================
create table llx_product_lang create table llx_adherent_type_lang
( (
rowid integer AUTO_INCREMENT PRIMARY KEY, rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_product integer DEFAULT 0 NOT NULL, fk_type integer DEFAULT 0 NOT NULL,
lang varchar(5) DEFAULT 0 NOT NULL, lang varchar(5) DEFAULT 0 NOT NULL,
label varchar(255) NOT NULL, label varchar(255) NOT NULL,
description text, description text,
note text, email text,
import_key varchar(14) DEFAULT NULL import_key varchar(14) DEFAULT NULL
)ENGINE=innodb; )ENGINE=innodb;