commit
c29ddbe404
3 changed files with 8 additions and 2 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
class AddRoutingCriteriaNameColumnToProcedure < ActiveRecord::Migration[5.2]
|
||||||
|
def change
|
||||||
|
add_column :procedures, :routing_criteria_name, :text
|
||||||
|
end
|
||||||
|
end
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 2019_09_20_122228) do
|
ActiveRecord::Schema.define(version: 2019_10_14_160538) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
@ -486,6 +486,7 @@ ActiveRecord::Schema.define(version: 2019_09_20_122228) do
|
||||||
t.string "path", null: false
|
t.string "path", null: false
|
||||||
t.string "declarative_with_state"
|
t.string "declarative_with_state"
|
||||||
t.text "monavis_embed"
|
t.text "monavis_embed"
|
||||||
|
t.text "routing_criteria_name"
|
||||||
t.index ["declarative_with_state"], name: "index_procedures_on_declarative_with_state"
|
t.index ["declarative_with_state"], name: "index_procedures_on_declarative_with_state"
|
||||||
t.index ["hidden_at"], name: "index_procedures_on_hidden_at"
|
t.index ["hidden_at"], name: "index_procedures_on_hidden_at"
|
||||||
t.index ["parent_procedure_id"], name: "index_procedures_on_parent_procedure_id"
|
t.index ["parent_procedure_id"], name: "index_procedures_on_parent_procedure_id"
|
||||||
|
|
|
@ -3,7 +3,7 @@ def domains_for_stage(stage)
|
||||||
when 'dev'
|
when 'dev'
|
||||||
['web1.dev', 'web2.dev']
|
['web1.dev', 'web2.dev']
|
||||||
when 'prod'
|
when 'prod'
|
||||||
['web1', 'web2']
|
['web1', 'web2', 'web3', 'web4']
|
||||||
else
|
else
|
||||||
raise "STAGE #{stage} is unknown. It must be either dev or prod."
|
raise "STAGE #{stage} is unknown. It must be either dev or prod."
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue