REFACTOR: Change dossier state 'Submitted' To 'Initiated'

This commit is contained in:
Xavier J 2015-11-02 15:31:15 +01:00
parent c09fe8e7f6
commit 285cee939a
19 changed files with 49 additions and 44 deletions

View file

@ -0,0 +1,5 @@
class ChangeStateSubmittedToInitiated < ActiveRecord::Migration
def change
Dossier.where(state: 'submitted').update_all(state: 'initiated')
end
end

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20151102135824) do
ActiveRecord::Schema.define(version: 20151102142940) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"