Fix: syntax error

This commit is contained in:
Laurent Destailleur 2013-04-10 10:40:59 +02:00
parent 7f6fa0bf0f
commit 20e9eb5f8f
2 changed files with 4 additions and 4 deletions

View File

@ -214,16 +214,16 @@ ALTER TABLE llx_product_price ADD COLUMN import_key varchar(14) AFTER price_by_q
DROP TABLE llx_printer_ipp;
CREATE TABLE llx_printer_ipp
(
rowid int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
datec datetime,
printer_name text NOT NULL,
printer_location text NOT NULL,
printer_uri varchar(256) NOT NULL,
copy int(11) NOT NULL DEFAULT '1',
copy integer NOT NULL DEFAULT '1',
module varchar(16) NOT NULL,
login varchar(32) NOT NULL
)ENGINE=innodb;
) ENGINE=innodb;
ALTER TABLE llx_socpeople ADD COLUMN ref_ext varchar(128) after entity;

View File

@ -18,7 +18,7 @@
CREATE TABLE llx_printer_ipp
(
rowid integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
datec datetime,
printer_name text NOT NULL,