6 lines
173 B
Ruby
6 lines
173 B
Ruby
class EnsureExistingBubblesArePublished < ActiveRecord::Migration[8.1]
|
|
def change
|
|
execute "update bubbles set status = 'published' where status = 'drafted'"
|
|
end
|
|
end
|