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