Skip to content

Commit

Permalink
[api][webui] Add default values for project filtering to structure.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Moises Deniz Aleman committed Jan 19, 2017
1 parent 5ddd557 commit 7669128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/db/structure.sql
Expand Up @@ -388,8 +388,8 @@ CREATE TABLE `configurations` (
`admin_email` varchar(255) COLLATE utf8_bin DEFAULT 'unconfigured@openbuildservice.org',
`default_tracker` varchar(255) COLLATE utf8_bin DEFAULT 'bnc',
`api_url` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`unlisted_projects_filter` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`unlisted_projects_filter_description` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`unlisted_projects_filter` varchar(255) COLLATE utf8_bin DEFAULT '^home:.+',
`unlisted_projects_filter_description` varchar(255) COLLATE utf8_bin DEFAULT 'home projects',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

Expand Down

0 comments on commit 7669128

Please sign in to comment.