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