diff options
author | Grail Finder <wohilas@gmail.com> | 2024-11-19 17:15:02 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-11-19 17:15:02 +0300 |
commit | f32375488f5127c910021f627d83e017c5c7a10f (patch) | |
tree | 5a697ca8a42e3651fa57ea346af223b67f3e3a3a /storage/migrations/001_init.up.sql | |
parent | d3cc8774b13a0c8e9fbf11947b9caca216595a8d (diff) |
Feat: add storage interface; add sqlite impl
Diffstat (limited to 'storage/migrations/001_init.up.sql')
-rw-r--r-- | storage/migrations/001_init.up.sql | 7 |
1 files changed, 7 insertions, 0 deletions
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 +); |