add sql migration to index lists.is_public

This commit is contained in:
Gered 2016-07-23 17:29:21 -04:00
parent c3c805ddad
commit 42beeb8022
2 changed files with 2 additions and 0 deletions

View file

@ -0,0 +1 @@
DROP INDEX IF EXISTS lists_is_public_idx;

View file

@ -0,0 +1 @@
CREATE INDEX lists_is_public_idx ON lists (is_public);