6 lines
144 B
Ruby
6 lines
144 B
Ruby
|
class ChangeStatereplyToReplied < ActiveRecord::Migration
|
||
|
def change
|
||
|
Dossier.where(state: 'reply').update_all(state: 'replied')
|
||
|
end
|
||
|
end
|