1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 22:45:27 +00:00
mastodon/db/migrate/20160223165855_add_url_to_accounts.rb

5 lines
138 B
Ruby

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