Init commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
CREATE TABLE positions
|
||||
(
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
|
||||
receipt_id INTEGER NOT NULL,
|
||||
|
||||
section_number TEXT,
|
||||
gtin_code TEXT,
|
||||
|
||||
product_name TEXT NOT NULL,
|
||||
|
||||
product_count REAL NOT NULL,
|
||||
amount REAL NOT NULL,
|
||||
|
||||
discount REAL,
|
||||
surcharge REAL,
|
||||
|
||||
tag TEXT,
|
||||
marking_code TEXT,
|
||||
ukz_code TEXT,
|
||||
|
||||
FOREIGN KEY (receipt_id)
|
||||
REFERENCES receipts (id)
|
||||
ON DELETE CASCADE
|
||||
);
|
||||
Reference in New Issue
Block a user