kv, quotes, some other stuff

This commit is contained in:
2024-11-25 13:33:33 -06:00
parent 008ff5b7cf
commit 7276f5922f
13 changed files with 352 additions and 6 deletions

View File

@ -0,0 +1,5 @@
-- Add migration script here
CREATE TABLE kv_store (
`key` VARCHAR(255) NOT NULL PRIMARY KEY,
`value` TEXT
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;