3ee08dea54
Fix global handler Fix initial content, fix settings status, restore partially working rte Fmt Implement keyup for rte Save editor type, switch in mixed mode Fix initial state for switch between editors New logger, add handle multiple editors Nicer editor switcher, fix change user mode in project settings Epics starts and ends at. Fix DateTime Input month name
13 lines
368 B
SQL
13 lines
368 B
SQL
CREATE TYPE "TextEditorModeType" AS ENUM (
|
|
'md_only',
|
|
'rte_only',
|
|
'mixed'
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS user_settings
|
|
(
|
|
id serial not null unique primary key,
|
|
user_id int references users (id) not null,
|
|
text_editor_mode "TextEditorModeType" DEFAULT 'md_only' NOT NULL
|
|
);
|