20160222143943_add_profile_fields_to_accounts.rb 345 B

1234567891011
  1. # frozen_string_literal: true
  2. class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
  3. def change
  4. change_table :accounts, bulk: true do |t|
  5. t.column :note, :text, null: false, default: ''
  6. t.column :display_name, :string, null: false, default: ''
  7. t.column :uri, :string, null: false, default: ''
  8. end
  9. end
  10. end