Skip to content

Commit

Permalink
db: add config tool schema
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Oct 3, 2024
1 parent fd6e94f commit 4f4142f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config/db_schema.mysql
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,15 @@ CREATE TABLE `ocp_db_config` (
`db_name` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
);

--
-- Table for `config` tool
--

CREATE TABLE `config` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`value` varchar(255) DEFAULT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
);

0 comments on commit 4f4142f

Please sign in to comment.