add share_mode and backend_mode to sql structures (#103)

This commit is contained in:
Michael Quigley
2022-11-21 14:42:25 -05:00
parent c277309f71
commit 7cd36021ce
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- +migrate Up
create type share_mode as enum ('public', 'private');
create type backend_mode as enum ('proxy', 'web', 'dav');
alter table services
add column share_mode share_mode not null default 'public',
add column backend_mode backend_mode not null default 'proxy';
alter table services
alter column share_mode drop default;
alter table services
alter column backend_mode drop default;