You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
312 B
8 lines
312 B
-- Create dicts table |
|
CREATE TABLE IF NOT EXISTS dicts ( |
|
name TEXT PRIMARY KEY, |
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP |
|
); |
|
|
|
-- Note: Individual dict entry tables will be created dynamically when dicts are created |
|
-- This is because each dict needs its own table with the dict name in the table name |