INSERT INTO deck (name, description) VALUES (?1, ?2) ON CONFLICT (name) DO UPDATE SET description = excluded.description; -- Upserting behaviour so that this can be used to merge config files into the database