inline keyboard

This commit is contained in:
2026-01-22 13:47:18 +03:00
parent 8c44707434
commit 015d5b904a
5 changed files with 180 additions and 99 deletions

View File

@@ -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);