~cytrogen/masto-fe

ref: 99c72830bc8c426a12c3f5dc4eabff1ece99eac4 masto-fe/db/migrate/20171109012327_add_moderator_to_accounts.rb -rw-r--r-- 385 bytes
99c72830 — Claire [Glitch] Fix scroll position in thread view reseting when closing a modal 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require Rails.root.join('lib', 'mastodon', 'migration_helpers')

class AddModeratorToAccounts < ActiveRecord::Migration[5.2]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    safety_assured { add_column_with_default :users, :moderator, :bool, default: false }
  end

  def down
    remove_column :users, :moderator
  end
end