-- 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