Increase size for comment field

This commit is contained in:
Laurent Destailleur 2008-12-21 22:32:47 +00:00
parent 870eb63ef6
commit f89b3e2ba6
2 changed files with 2 additions and 2 deletions

View File

@ -84,11 +84,11 @@ alter table llx_adherent_options_label add column type varchar(8);
alter table llx_adherent_options_label add column size integer DEFAULT 0;
alter table llx_adherent_options_label add column pos integer DEFAULT 0;
-- Reverse option
update llx_const set visible = 1, name = 'FACTURE_ENABLE_RECUR', value='1' where name = 'FACTURE_DISABLE_RECUR' and value = '0';
delete from llx_const where name = 'FACTURE_DISABLE_RECUR' and value = '1';
alter table llx_bank_account modify comment text;
update llx_bank_account set ref = label where ref is null or ref = '';

View File

@ -49,5 +49,5 @@ create table llx_bank_account
currency_code varchar(3) NOT NULL,
min_allowed integer DEFAULT 0,
min_desired integer DEFAULT 0,
comment varchar(254)
comment text
)type=innodb;