Add favorite button into country dictionary to put value on top select list

This commit is contained in:
aspangaro
2014-10-12 15:28:01 +02:00
parent 9768550696
commit 71dafac03c
7 changed files with 323 additions and 258 deletions

View File

@@ -1086,3 +1086,6 @@ CREATE TABLE llx_usergroup_extrafields (
ALTER TABLE llx_usergroup_extrafields ADD INDEX idx_usergroup_extrafields (fk_object);
ALTER TABLE llx_contrat ADD COLUMN model_pdf varchar(255) DEFAULT NULL AFTER note_public;
ALTER TABLE llx_c_country ADD COLUMN favorite tinyint DEFAULT 0 AFTER active;
UPDATE llx_c_country SET favorite = '1' WHERE rowid = '0';