diff options
Diffstat (limited to 'storage/migrations')
| -rw-r--r-- | storage/migrations/001_init.down.sql | 1 | ||||
| -rw-r--r-- | storage/migrations/001_init.up.sql | 7 | 
2 files changed, 8 insertions, 0 deletions
diff --git a/storage/migrations/001_init.down.sql b/storage/migrations/001_init.down.sql new file mode 100644 index 0000000..0ef183f --- /dev/null +++ b/storage/migrations/001_init.down.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS chat; diff --git a/storage/migrations/001_init.up.sql b/storage/migrations/001_init.up.sql new file mode 100644 index 0000000..287f3d1 --- /dev/null +++ b/storage/migrations/001_init.up.sql @@ -0,0 +1,7 @@ +CREATE TABLE chat ( +    id INTEGER PRIMARY KEY AUTOINCREMENT, +    name TEXT NOT NULL, +    msgs TEXT NOT NULL,  -- Store messages as a comma-separated string +    created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, +    updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP +);  | 
