Skip to content

Commit

Permalink
chore: create config_ if not exists
Browse files Browse the repository at this point in the history
  • Loading branch information
eseidel committed Aug 12, 2024
1 parent a83e169 commit f505964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/sql/tables/18_config.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- global configuration settings
CREATE TABLE config (
CREATE TABLE IF NOT EXISTS "config_" (
key TEXT NOT NULL PRIMARY KEY,
value TEXT NOT NULL
);

0 comments on commit f505964

Please sign in to comment.