NEW add "checked" field for new list engine compatibility
This commit is contained in:
parent
3a26443546
commit
4c90ff9917
@ -102,6 +102,8 @@ ALTER TABLE llx_c_type_fees ADD COLUMN type integer DEFAULT 0;
|
||||
|
||||
ALTER TABLE llx_c_ecotaxe CHANGE COLUMN libelle label varchar(255);
|
||||
|
||||
ALTER TABLE llx_c_field_list ADD COLUMN checked tinyint DEFAULT 0 NOT NULL AFTER search;
|
||||
|
||||
ALTER TABLE llx_product_fournisseur_price DROP COLUMN unitcharges;
|
||||
|
||||
ALTER TABLE llx_societe ADD COLUMN fk_entrepot integer DEFAULT 0;
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2010 Regis Houssin <regis.houssin@capnetworks.com>
|
||||
-- Copyright (C) 2010-2018 Regis Houssin <regis.houssin@capnetworks.com>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -33,6 +33,7 @@ create table llx_c_field_list
|
||||
align varchar(6) DEFAULT 'left', -- align (left,center,right)
|
||||
sort tinyint DEFAULT 1 NOT NULL, -- add sort field
|
||||
search tinyint DEFAULT 0 NOT NULL, -- add search field
|
||||
checked tinyint DEFAULT 0 NOT NULL, -- show or hide field by default
|
||||
enabled varchar(255) DEFAULT 1, -- Condition to show or hide
|
||||
rang integer DEFAULT 0
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user