2
0
forked from Wavyzz/dolibarr

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

@@ -1,6 +1,7 @@
-- ========================================================================
-- Copyright (C) 2001-2002,2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2014 Alexandre Spangaro <alexandre.spangaro@gmail.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
@@ -23,5 +24,6 @@ create table llx_c_country
code varchar(2) NOT NULL,
code_iso varchar(3) ,
label varchar(50) NOT NULL,
active tinyint DEFAULT 1 NOT NULL
active tinyint DEFAULT 1 NOT NULL,
favorite tinyint DEFAULT 0 NOT NULL
)ENGINE=innodb;