mastodon/db/migrate/20160222143943_add_profile_fields_to_accounts.rb

10 lines
324 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
2016-02-22 15:00:20 +00:00
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