wedding-planner/db/migrate/20241111063741_merge_guest_names.rb

20 lines
423 B
Ruby
Raw Permalink Normal View History

2024-11-11 06:57:39 +00:00
# Copyright (C) 2024 Manuel Bustillo
class MergeGuestNames < ActiveRecord::Migration[8.0]
def change
add_column :guests, :name, :string
reversible do |dir|
dir.up do
execute <<~SQL
UPDATE guests
SET name = CONCAT(first_name, ' ', last_name)
SQL
end
end
remove_column :guests, :first_name, :string
remove_column :guests, :last_name, :string
end
end