Artist urls can be prepended with a '-' to mark is inactive (#3388)

This commit is contained in:
Albert Yi
2018-05-16 15:33:32 -07:00
parent 6acaf999a1
commit fcd80b6043
7 changed files with 52 additions and 6 deletions

View File

@@ -683,7 +683,8 @@ CREATE TABLE public.artist_urls (
url text NOT NULL,
normalized_url text NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone
updated_at timestamp without time zone,
is_active boolean DEFAULT true NOT NULL
);
@@ -7494,6 +7495,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20180116001101'),
('20180403231351'),
('20180413224239'),
('20180425194016');
('20180425194016'),
('20180516222413');