mastodon/db/migrate/20250516120259_add_id_scheme_to_accounts.rb
2025-05-16 10:42:16 +02:00

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