about summary refs log tree commit diff
path: root/db/migrate/20160223165855_add_url_to_accounts.rb
blob: a4db8814afc14274fea1c49d4f48d89b39541691 (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