2
0
Files
mastodon/db/migrate/20250924170259_add_id_scheme_to_accounts.rb

8 lines
172 B
Ruby

# frozen_string_literal: true
class AddIdSchemeToAccounts < ActiveRecord::Migration[8.0]
def change
add_column :accounts, :id_scheme, :integer, default: 0
end
end