20160222143943_add_profile_fields_to_accounts.rb 324 B

123456789
  1. # frozen_string_literal: true
  2. class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
  3. def change
  4. add_column :accounts, :note, :text, null: false, default: ''
  5. add_column :accounts, :display_name, :string, null: false, default: ''
  6. add_column :accounts, :uri, :string, null: false, default: ''
  7. end
  8. end