1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-02 13:13:36 +00:00
mastodon/db/migrate/20190701022101_add_trust_level_to_accounts.rb

8 lines
164 B
Ruby

# frozen_string_literal: true
class AddTrustLevelToAccounts < ActiveRecord::Migration[5.2]
def change
add_column :accounts, :trust_level, :integer
end
end