init
This commit is contained in:
commit
a4c68ca9e2
76 changed files with 2737 additions and 0 deletions
8
server/application/backend/data/schema.sql
Normal file
8
server/application/backend/data/schema.sql
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
DROP TABLE IF EXISTS user;
|
||||
|
||||
CREATE TABLE device (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
device_token TEXT NOT NULL,
|
||||
encryption_key TEXT NOT NULL,
|
||||
device_name TEXT NOT NULL
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue