This commit is contained in:
Jorge Manrubia
2025-09-12 18:59:41 +02:00
parent 9e5108bcae
commit 2654cfe27d
@@ -1,8 +1,8 @@
class MigrateEverythingAcccessesToWatching < ActiveRecord::Migration[8.1]
def up
execute <<-SQL
UPDATE accesses
SET involvement = 'watching'
UPDATE accesses#{' '}
SET involvement = 'watching'#{' '}
WHERE involvement = 'everything'
SQL
end