- localization-svc: defaultLocale ru, resolveLocale only by geo - web-svc: DEFAULT_LOCALE ru, layout lang=ru, embeddedTranslations fallback ru - countryToLocale: default ru when no country or unknown country Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
223 B
SQL
9 lines
223 B
SQL
CREATE TABLE IF NOT EXISTS library_threads (
|
|
id TEXT PRIMARY KEY,
|
|
user_id TEXT NOT NULL,
|
|
title TEXT NOT NULL,
|
|
created_at TIMESTAMP DEFAULT NOW() NOT NULL,
|
|
sources JSONB DEFAULT '[]',
|
|
files JSONB DEFAULT '[]'
|
|
);
|