Skip to content

Commit

Permalink
Merge branch 'qa'
Browse files Browse the repository at this point in the history
  • Loading branch information
smeeks committed Dec 10, 2021
2 parents 62163b6 + b3626d5 commit 46719a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions db/migrate/20210326190625_add_team_ali_code_to_draft_phase.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class AddTeamAliCodeToDraftPhase < ActiveRecord::Migration[5.2]
def change
add_reference :draft_projects, :team_ali_code, foreign_key: true, type: :integer
add_reference :draft_project_phases, :team_ali_code, foreign_key: true, type: :integer
add_reference :draft_projects, :team_ali_code, foreign_key: true, type: :bigint
add_reference :draft_project_phases, :team_ali_code, foreign_key: true, type: :bigint
end
end
2 changes: 1 addition & 1 deletion db/migrate/20210329214449_add_fuel_type_to_draft_phase.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class AddFuelTypeToDraftPhase < ActiveRecord::Migration[5.2]
def change
add_reference :draft_project_phases, :fuel_type, foreign_key: true, type: :integer
add_reference :draft_project_phases, :fuel_type, foreign_key: true, type: :bigint
end
end
2 changes: 1 addition & 1 deletion db/migrate/20210518154523_add_reviewer_org_to_scenario.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class AddReviewerOrgToScenario < ActiveRecord::Migration[5.2]
def change
add_reference :scenarios, :reviewer_organization, foreign_key: { to_table: :organizations }, type: :integer
add_reference :scenarios, :reviewer_organization, foreign_key: { to_table: :organizations }, type: :bigint
end
end
2 changes: 1 addition & 1 deletion lib/transam_cpt/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module TransamCpt
VERSION = "2.17.0"
VERSION = "2.18.0"
end

0 comments on commit 46719a4

Please sign in to comment.