blob: a8e42c2d0057f39e4ff5981b960ecad73aa77e36 (
plain)
1
2
3
4
5
6
7
|
class AddPhoneticsToPhoneBookEntry < ActiveRecord::Migration
def change
add_column :phone_book_entries, :first_name_phonetic, :string
add_column :phone_book_entries, :last_name_phonetic, :string
add_column :phone_book_entries, :organization_phonetic, :string
end
end
|