mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-22 01:11:21 +01:00
18 lines
524 B
SQL
18 lines
524 B
SQL
-- ===================================================================
|
|
-- $Id$
|
|
-- $Source$
|
|
-- ===================================================================
|
|
|
|
create table llx_ventes
|
|
(
|
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
|
fk_soc integer NOT NULL,
|
|
fk_product integer NOT NULL,
|
|
dated datetime, -- date debut
|
|
datef datetime, -- date fin
|
|
price real,
|
|
author varchar(30),
|
|
active smallint DEFAULT 0 NOT NULL,
|
|
note varchar(255)
|
|
);
|