Update llx_adherent_type.sql
This commit is contained in:
parent
eaafa59160
commit
5f98056423
@ -18,22 +18,23 @@
|
|||||||
--
|
--
|
||||||
-- ===================================================================
|
-- ===================================================================
|
||||||
--
|
--
|
||||||
-- statut
|
-- state / statut
|
||||||
-- 0 : actif
|
-- 0 : active / actif
|
||||||
-- 1 : inactif
|
-- 1 : inactive / inactif
|
||||||
|
--
|
||||||
|
|
||||||
create table llx_adherent_type
|
create table llx_adherent_type
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
entity integer DEFAULT 1 NOT NULL,
|
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
statut smallint NOT NULL DEFAULT 0,
|
statut smallint NOT NULL DEFAULT 0, -- state 0 = active , 1 = inactive
|
||||||
libelle varchar(50) NOT NULL,
|
libelle varchar(50) NOT NULL, -- label
|
||||||
morphy varchar(3) NOT NULL,
|
morphy varchar(3) NOT NULL, -- moral and/or physical entity
|
||||||
duration varchar(6) DEFAULT NULL,
|
duration varchar(6) DEFAULT NULL, -- (minimal) duration of membership
|
||||||
subscription varchar(3) NOT NULL DEFAULT '1',
|
subscription varchar(3) NOT NULL DEFAULT '1', -- subscription with costs / fee or without / for free
|
||||||
amount double(24,8) DEFAULT NULL,
|
amount double(24,8) DEFAULT NULL, -- membership fee
|
||||||
vote varchar(3) NOT NULL DEFAULT '1',
|
vote varchar(3) NOT NULL DEFAULT '1', -- entitled to vote
|
||||||
note text,
|
note text, -- description / comment
|
||||||
mail_valid text
|
mail_valid text -- text for welcome email
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user