Skip to content

Commit

Permalink
Test adding migration after deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
slorek committed Jun 5, 2024
1 parent df8ea9e commit 7adf832
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/analytics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ shared:
- dqt_teacher_status
- submitted_using_slc_data
- journeys_session_id
- test_column
:decisions:
- id
- result
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class TestReviewAppsSubsequentMigration < ActiveRecord::Migration[7.0]
def change
add_column :claims, :test_column, :text, default:"test"
end
end
3 changes: 2 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2024_06_05_124110) do
ActiveRecord::Schema[7.0].define(version: 2024_06_05_141826) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_trgm"
enable_extension "pgcrypto"
Expand Down Expand Up @@ -97,6 +97,7 @@
t.boolean "submitted_using_slc_data", default: false
t.datetime "sent_one_time_password_at"
t.uuid "journeys_session_id"
t.text "test_column", default: "test"
t.index ["academic_year"], name: "index_claims_on_academic_year"
t.index ["created_at"], name: "index_claims_on_created_at"
t.index ["eligibility_type", "eligibility_id"], name: "index_claims_on_eligibility_type_and_eligibility_id"
Expand Down

0 comments on commit 7adf832

Please sign in to comment.