mirror of https://github.com/LemmyNet/lemmy.git
Add migration to mark local communities as such (#3257)
parent
08e25d0e63
commit
4f2fb68d6b
|
@ -0,0 +1,2 @@
|
|||
-- Add a no-op statement to prevent `diesel migration redo` errors
|
||||
SELECT 1;
|
|
@ -0,0 +1,5 @@
|
|||
update community c
|
||||
set local=true
|
||||
from local_site ls
|
||||
join site s on ls.site_id=s.id
|
||||
where c.instance_id=s.instance_id and not c.local;
|
Loading…
Reference in New Issue