mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
8 lines
288 B
Ruby
8 lines
288 B
Ruby
|
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
|