about summary refs log tree commit diff
path: root/db/migrate/20160223165855_add_url_to_accounts.rb
blob: c81b1c64fc7034f5c51348b894cb0d87127bbb82 (plain) (blame)
1
2
3
4
5
class AddUrlToAccounts < ActiveRecord::Migration[4.2]
  def change
    add_column :accounts, :url, :string, null: true, default: nil
  end
end