about summary refs log tree commit diff
path: root/db/migrate/20170318214217_add_header_remote_url_to_accounts.rb
blob: 0ba38d3e00135fadaa90d2b1ff1bc93bf9cfca95 (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