6 lines
115 B
Ruby
6 lines
115 B
Ruby
|
class ChangePhoneToUser < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column :users, :phone, :string
|
||
|
end
|
||
|
end
|