Skip to content

Commit

Permalink
db: add config tool schema for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Oct 10, 2024
1 parent 4f4142f commit 24e7e96
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions config/db_schema.pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,11 @@ CREATE TABLE ocp_db_config (
db_pass text default NULL,
db_name text NOT NULL default ''
);

CREATE SEQUENCE config_id_seq;
CREATE TABLE config (
id integer Primary KEY DEFAULT nextval('config_id_seq'),
name text NOT NULL,
value text DEFAULT NULL,
description text NOT NULL DEFAULT ''
);

0 comments on commit 24e7e96

Please sign in to comment.