lk | renames columns on agencies table

This commit is contained in:
Louis Knapp
2016-07-24 08:12:01 -05:00
parent 692f12d47d
commit 7cd1b7a7a4
7 changed files with 27 additions and 21 deletions
@@ -0,0 +1,6 @@
class ChangeAgencyPhoneNumberToAgencyPhone < ActiveRecord::Migration
def change
rename_column :agencies, :phone_number, :phone
rename_column :agencies, :agency_name, :name
end
end