about summary refs log tree commit diff
path: root/db/migrate/20170318214217_add_header_remote_url_to_accounts.rb
blob: 20c9659880915a12a69d3e1fc41c4462f2f4022a (plain) (blame)
1
2
3
4
5
class AddHeaderRemoteURLToAccounts < ActiveRecord::Migration[5.0]
  def change
    add_column :accounts, :header_remote_url, :string, null: false, default: ''
  end
end