Added option to make favorite groups public

This commit is contained in:
BrokenEagle
2017-12-18 17:29:26 -08:00
parent f5cb49d9bf
commit 5a602c60eb
4 changed files with 27 additions and 13 deletions

View File

@@ -1044,7 +1044,8 @@ CREATE TABLE favorite_groups (
post_ids text DEFAULT ''::text NOT NULL,
post_count integer DEFAULT 0 NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone
updated_at timestamp without time zone,
is_public boolean DEFAULT false NOT NULL
);
@@ -7530,3 +7531,5 @@ INSERT INTO schema_migrations (version) VALUES ('20171106075030');
INSERT INTO schema_migrations (version) VALUES ('20171127195124');
INSERT INTO schema_migrations (version) VALUES ('20171219001521');