unique id

This commit is contained in:
2023-11-19 13:16:17 +01:00
parent c3b5c6827f
commit ee80e7be55
3 changed files with 23 additions and 8 deletions

View File

@@ -1,6 +1,8 @@
CREATE TABLE orders (
id INTEGER NOT NULL UNIQUE,
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
id_hello INTEGER,
amount REAL NOT NULL,
message TEXT,
name TEXT
);