about summary refs log blame commit diff
path: root/db/migrate/20160322193748_add_avatar_remote_url_to_accounts.rb
blob: f9c213d9b47e6ffabe78879377d46b24690d6712 (plain) (tree)
1
2
3
4
5
                                                                 


                                                                               
class AddAvatarRemoteUrlToAccounts < ActiveRecord::Migration[4.2]
  def change
    add_column :accounts, :avatar_remote_url, :string, null: true, default: nil
  end
end