Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove partner FAQs - Part 2 #4913

Merged
merged 3 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class RemoveForBanksAndForPartnersFromQuestions < ActiveRecord::Migration[7.2]
def up
Question.where(for_partners: true, for_banks: false).delete_all
safety_assured do
remove_column :questions, :for_banks
remove_column :questions, :for_partners
end
end

def down
add_column :questions, :for_banks, :boolean, null: false, default: true
add_column :questions, :for_partners, :boolean, null: false, default: false
end
end
4 changes: 1 addition & 3 deletions 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.2].define(version: 2024_12_20_020009) do
ActiveRecord::Schema[7.2].define(version: 2025_01_04_193318) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

Expand Down Expand Up @@ -692,8 +692,6 @@

create_table "questions", force: :cascade do |t|
t.string "title", null: false
t.boolean "for_partners", default: true, null: false
t.boolean "for_banks", default: true, null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
Expand Down
Loading