1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 06:48:28 +09:00
mastodon/db/migrate/20160222143943_add_profile_fields_to_accounts.rb

8 lines
288 B
Ruby
Raw Normal View History

2016-02-23 00:00:20 +09:00
class AddProfileFieldsToAccounts < ActiveRecord::Migration
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