inline keyboard
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
CREATE TABLE rp_general_presets(
|
||||
id text NOT NULL PRIMARY KEY,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL DEFAULT '',
|
||||
description text NOT NULL DEFAULT 'Нет описания',
|
||||
pre_history text NOT NULL DEFAULT '',
|
||||
post_history text NOT NULL DEFAULT ''
|
||||
);
|
||||
@@ -9,6 +9,7 @@ CREATE UNIQUE INDEX rp_general_presets_uindex ON rp_general_presets(id);
|
||||
CREATE TABLE rp_scenarios(
|
||||
id serial NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL DEFAULT 'Нет описания',
|
||||
prompt text NOT NULL
|
||||
);
|
||||
CREATE UNIQUE INDEX rp_scenarios_uindex ON rp_scenarios(id);
|
||||
|
||||
Reference in New Issue
Block a user