Косметические правки по фронту, раскатка приложения в продакшн версии, исправление бага с созданием контакта
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
INSERT INTO han_app.popular_questions (
|
||||
id,
|
||||
mnemonic,
|
||||
locale,
|
||||
question_text,
|
||||
sort_order,
|
||||
record_status
|
||||
)
|
||||
VALUES
|
||||
(gen_random_uuid(), 'popular.patent_check', 'ru', 'Проверить патент', 20, 'A'),
|
||||
(gen_random_uuid(), 'popular.rkl_check', 'ru', 'Проверить в РКЛ', 30, 'A')
|
||||
ON CONFLICT (mnemonic, locale) DO UPDATE
|
||||
SET
|
||||
question_text = EXCLUDED.question_text,
|
||||
sort_order = EXCLUDED.sort_order,
|
||||
record_status = 'A',
|
||||
updated_at = now();
|
||||
Reference in New Issue
Block a user