6 lines
154 B
Ruby
6 lines
154 B
Ruby
|
class ChangeStateProposedToSubmitted < ActiveRecord::Migration
|
||
|
def change
|
||
|
Dossier.where(state: 'proposed').update_all(state: 'submitted')
|
||
|
end
|
||
|
end
|