mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-25 20:19:21 -05:00
SQLite and postgres doesn't share a true literal
This commit is contained in:
parent
84afeb41f3
commit
0c1a27b787
@ -16,6 +16,6 @@
|
||||
|
||||
/* This release removes the restriction that published rooms must have an alias,
|
||||
* so we go back and ensure the only 'public' rooms are ones with an alias.*/
|
||||
UPDATE rooms SET is_public = 0 WHERE is_public = 1 AND room_id not in (
|
||||
UPDATE rooms SET is_public = (1 = 0) WHERE is_public = (1 = 1) AND room_id not in (
|
||||
SELECT room_id FROM room_aliases
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user