2023-04-01 22:31:57 +02:00
|
|
|
CREATE TYPE "TextEditorModeMapping" AS ENUM (
|
2021-04-25 11:31:52 +02:00
|
|
|
'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,
|
2023-04-01 22:31:57 +02:00
|
|
|
text_editor_mode "TextEditorModeMapping" DEFAULT 'md_only' NOT NULL
|
2021-04-25 11:31:52 +02:00
|
|
|
);
|