1
0
Fork 0
mirror of https://github.com/kikobar/mastodon.git synced 2025-01-14 13:57:04 +00:00
mastodon/db/migrate/20160322193748_add_avatar_remote_url_to_accounts.rb
2016-03-22 21:05:23 +01:00

6 lines
164 B
Ruby

class AddAvatarRemoteUrlToAccounts < ActiveRecord::Migration
def change
add_column :accounts, :avatar_remote_url, :string, null: true, default: nil
end
end