mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-08 05:14:00 +02:00
move db to separate dir
This commit is contained in:
parent
e3c99305cc
commit
02862e6517
4 changed files with 22 additions and 22 deletions
7
server/db/schema.sql
Normal file
7
server/db/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