sql: remove inventory timeline

This commit is contained in:
King Kévin 2023-01-23 14:19:38 +01:00
parent edf9af0780
commit 331f08109b
1 changed files with 0 additions and 1 deletions

View File

@ -162,7 +162,6 @@ CREATE TABLE IF NOT EXISTS inventory (
part INTEGER NOT NULL,
location INTEGER,
quantity INTEGER NOT NULL,
date DATETIME NOT NULL, -- when the quantity changed
FOREIGN KEY (part) REFERENCES part (id),
FOREIGN KEY (location) REFERENCES location (id)
);