Fix: wrong field name

This commit is contained in:
Regis Houssin 2013-05-25 19:02:06 +02:00
parent 2cac1f4c9c
commit b9695ddc2b
2 changed files with 4 additions and 2 deletions

View File

@ -377,3 +377,5 @@ create table llx_facture_fourn_extrafields
ALTER TABLE llx_facture_fourn_extrafields ADD INDEX idx_facture_fourn_extrafields (fk_object);
ALTER TABLE llx_user_clicktodial ADD COLUMN url varchar(255) AFTER fk_user;
ALTER TABLE llx_societe_address CHANGE COLUMN tel phone varchar(20);

View File

@ -1,6 +1,6 @@
-- ========================================================================
-- Copyright (C) 2000-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2005-2010 Houssin Regis <regis.houssin@capnetworks.com>
-- Copyright (C) 2005-2013 Houssin Regis <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
@ -29,7 +29,7 @@ create table llx_societe_address
zip varchar(10), -- zipcode
town varchar(50), -- town
fk_pays integer DEFAULT 0, --
tel varchar(20), -- phone number
phone varchar(20), -- phone number
fax varchar(20), -- fax number
note text, --
fk_user_creat integer,