mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-08 13:24:01 +02:00
introduce db, some changes to UI
This commit is contained in:
parent
57f8f51b4f
commit
e3c99305cc
17 changed files with 151 additions and 18 deletions
7
server/schema.sql
Normal file
7
server/schema.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
DROP TABLE IF EXISTS items;
|
||||
CREATE TABLE items (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
name TEXT NOT NULL,
|
||||
price INTEGER NOT NULL,
|
||||
code TEXT NOT NULL
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue