Add new sponsor prompts. Add new sponsor command. Add `sponsor_text` table. Add sponsor global config settings. Update `Setting.command` to use new `widget`. Add custom `cmd_str` support to `Message` `SettingType`.
10 lines
217 B
SQL
10 lines
217 B
SQL
-- Sponsor Data {{{
|
|
CREATE TABLE sponsor_text(
|
|
ID INTEGER PRIMARY KEY DEFAULT 0,
|
|
prompt_text TEXT,
|
|
command_response TEXT
|
|
);
|
|
-- }}}
|
|
|
|
INSERT INTO VersionHistory (version, author) VALUES (11, 'v10-v11 migration');
|