5 lines
141 B
Ruby
5 lines
141 B
Ruby
class UpdateEventStates < ActiveRecord::Migration
|
|
def change
|
|
execute "UPDATE events SET state='new' WHERE state = 'review';"
|
|
end
|
|
end
|