Store messages in database
This commit is contained in:
10
migrations/001-initial-schema.sql
Normal file
10
migrations/001-initial-schema.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
-- Up
|
||||
|
||||
CREATE TABLE Message (
|
||||
id INTEGER PRIMARY KEY,
|
||||
text STRING
|
||||
);
|
||||
|
||||
-- Down
|
||||
|
||||
DROP TABLE Message;
|
Reference in New Issue
Block a user