Compare commits

...

2 commits

Author SHA1 Message Date
3bf0ec4ff8 Merge pull request 'fix inconsistency' (#1) from fdenzer-patch-1 into db_scripts
Reviewed-on: #1
2023-06-23 10:51:13 +02:00
9f9bf7205b fix inconsistency 2023-06-23 10:48:27 +02:00

View file

@ -49,8 +49,8 @@ CREATE TABLE IF NOT EXISTS einheit(
bezeichung VARCHAR(50) NOT NULL bezeichung VARCHAR(50) NOT NULL
); );
INSERT INTO einheit(menge_id, bezeichnung) VALUES (1, 'stueck'); INSERT INTO einheit(einheit_id, bezeichnung) VALUES (1, 'stueck');
INSERT INTO einheit(menge_id, bezeichnung) VALUES (2, 'menge'); INSERT INTO einheit(einheit_id, bezeichnung) VALUES (2, 'menge');
CREATE TABLE IF NOT EXISTS artikel ( CREATE TABLE IF NOT EXISTS artikel (
artikel_id INT NOT NULL PRIMARY KEY, artikel_id INT NOT NULL PRIMARY KEY,