Skip to content
Snippets Groups Projects
Commit 80a3fc35 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Bad sql format

parent fa8a0243
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@
-- ===========================================================================
CREATE TABLE llx_pos_tmp (
id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
id integer AUTO_INCREMENT PRIMARY KEY,
fk_article integer NOT NULL,
qte real NOT NULL,
fk_tva integer NOT NULL,
......@@ -27,6 +27,5 @@ CREATE TABLE llx_pos_tmp (
remise real NOT NULL,
total_ht double(24,8) NOT NULL,
total_tva double(24,8) NOT NULL,
total_ttc double(24,8) NOT NULL,
PRIMARY KEY (id)
total_ttc double(24,8) NOT NULL
) ENGINE=innodb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment