feat: add schema
This commit is contained in:
parent
cde39b21ec
commit
f7e3640b92
1 changed files with 9 additions and 0 deletions
9
schema.sql
Normal file
9
schema.sql
Normal file
|
@ -0,0 +1,9 @@
|
|||
DROP TABLE IF EXISTS statuses;
|
||||
|
||||
CREATE TABLE statuses (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
status_id TEXT NOT NULL,
|
||||
host TEXT
|
||||
);
|
||||
|
Loading…
Reference in a new issue