Skip to content

Commit

Permalink
Merge pull request #773 from openstax/sb/migration-for-studentflow-flag
Browse files Browse the repository at this point in the history
add migration to remove newflow_feature_flag
  • Loading branch information
BryanHouston authored Mar 12, 2020
2 parents f8b749f + b88fbe6 commit 123f448
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class UpdateSettingsValueToStudentFlow < ActiveRecord::Migration[5.2]
def up
ActiveRecord::Base.connection.execute("delete from Settings where var = 'newflow_feature_flag'")
end

def down
end
end
4 changes: 0 additions & 4 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,7 @@
t.text "return_to"
t.jsonb "signed_data"
t.boolean "is_partial_info_allowed", default: false, null: false
t.string "first_name", default: ""
t.string "last_name", default: ""
t.bigint "user_id"
t.index ["contact_info_kind"], name: "index_pre_auth_states_on_contact_info_kind"
t.index ["user_id"], name: "index_pre_auth_states_on_user_id"
end

create_table "security_logs", id: :serial, force: :cascade do |t|
Expand Down

0 comments on commit 123f448

Please sign in to comment.