change comlumn name

This commit is contained in:
Florian HENRY 2021-03-01 15:36:22 +01:00
parent e101ff0d6d
commit 036d1d5802
3 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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, ...)