1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20160222143943_add_profile_fields_to_accounts.rb

8 lines
293 B
Ruby
Raw Normal View History

class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
2016-02-22 07:00:20 -08: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