kv, quotes, some other stuff
This commit is contained in:
5
migrations/20241125173833_add_kv_table.sql
Normal file
5
migrations/20241125173833_add_kv_table.sql
Normal 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;
|
Reference in New Issue
Block a user