change comlumn name
This commit is contained in:
parent
e101ff0d6d
commit
036d1d5802
@ -67,7 +67,7 @@ class ConferenceOrBooth extends ActionComm
|
||||
const STATUS_DRAFT = 0;
|
||||
const STATUS_SUGGESTED = 1;
|
||||
const STATUS_CONFIRMED = 2;
|
||||
const STATUS_NOTSELECTED = 3;
|
||||
const STATUS_NOT_QUALIFIED = 3;
|
||||
const STATUS_DONE = 4;
|
||||
const STATUS_CANCELED = 5;
|
||||
|
||||
|
||||
@ -185,8 +185,8 @@ ALTER TABLE llx_projet ADD COLUMN accept_booth_suggestions integer DEFAULT 0;
|
||||
ALTER TABLE llx_projet ADD COLUMN price_registration double(24,8);
|
||||
ALTER TABLE llx_projet ADD COLUMN price_booth double(24,8);
|
||||
|
||||
ALTER TABLE llx_actioncomm ADD COLUMN num_vote integer;
|
||||
ALTER TABLE llx_actioncomm ADD COLUMN is_booth_paid smallint NOT NULL DEFAULT 0;
|
||||
ALTER TABLE llx_actioncomm ADD COLUMN eventorg_num_vote integer;
|
||||
ALTER TABLE llx_actioncomm ADD COLUMN eventorg_is_booth_paid smallint NOT NULL DEFAULT 0;
|
||||
ALTER TABLE llx_actioncomm ADD COLUMN status smallint NOT NULL DEFAULT 0;
|
||||
|
||||
ALTER TABLE llx_c_actioncomm MODIFY code varchar(50) NOT NULL;
|
||||
|
||||
@ -74,7 +74,7 @@ create table llx_actioncomm
|
||||
|
||||
eventorg_num_vote integer, -- use for Event Organization module
|
||||
eventorg_is_booth_paid smallint NOT NULL DEFAULT 0, -- use for Event Organization module
|
||||
statut smallint NOT NULL DEFAULT 0, -- use for Event Organization module for now
|
||||
status smallint NOT NULL DEFAULT 0, -- use for Event Organization module for now
|
||||
|
||||
fk_element integer DEFAULT NULL, -- For link to an element (proposal, invoice, order, ...)
|
||||
elementtype varchar(255) DEFAULT NULL, -- For link to an element (proposal, invoice, order, ...)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user