logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20171109012327_add_moderator_to_accounts.rb (354B)


  1. require Rails.root.join('lib', 'mastodon', 'migration_helpers')
  2. class AddModeratorToAccounts < ActiveRecord::Migration[5.1]
  3. include Mastodon::MigrationHelpers
  4. disable_ddl_transaction!
  5. def up
  6. safety_assured { add_column_with_default :users, :moderator, :bool, default: false }
  7. end
  8. def down
  9. remove_column :users, :moderator
  10. end
  11. end