SQLite and postgres doesn't share a true literal

This commit is contained in:
Erik Johnston 2016-03-23 14:10:49 +00:00
parent 84afeb41f3
commit 0c1a27b787

View File

@ -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
);