mirror of
https://github.com/norohind/jubilant-system-core.git
synced 2025-04-14 18:40:31 +03:00
6 lines
279 B
SQL
6 lines
279 B
SQL
insert into settings (
|
|
key, txt_value
|
|
) values (
|
|
:key,
|
|
:txt_value
|
|
) on conflict do update set txt_value = :txt_value where key = :key; |