about summary refs log tree commit diff
path: root/db/migrate/20160222143943_add_profile_fields_to_accounts.rb
blob: 221142bdd4b79735ce609f7d8f8b49cd9ddc9e18 (plain) (blame)
1
2
3
4
5
6
7
class AddProfileFieldsToAccounts < ActiveRecord::Migration
  def change
    add_column :accounts, :note, :text, null: false, default: ''
    add_column :accounts, :display_name, :string, null: false, default: ''
    add_column :accounts, :uri, :string, null: false, default: ''
  end
end