20170318214217_add_header_remote_url_to_accounts.rb 200 B

1234567
  1. # frozen_string_literal: true
  2. class AddHeaderRemoteURLToAccounts < ActiveRecord::Migration[5.0]
  3. def change
  4. add_column :accounts, :header_remote_url, :string, null: false, default: ''
  5. end
  6. end