1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 05:53:47 -05:00
tootlab-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