Files
Mastodon/db/migrate/20170318214217_add_header_remote_url_to_accounts.rb
2023-07-12 09:47:08 +02:00

8 lines
200 B
Ruby

# frozen_string_literal: true
class AddHeaderRemoteURLToAccounts < ActiveRecord::Migration[5.0]
def change
add_column :accounts, :header_remote_url, :string, null: false, default: ''
end
end