about summary refs log tree commit diff
path: root/db/migrate/20160222143943_add_profile_fields_to_accounts.rb
blob: cf279a535da928330a7c83bb6f517b6eeb855fe3 (plain) (blame)
1
2
3
4
5
6
7
class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
  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