~cytrogen/masto-fe

ref: 1d557305d2fbd53a8a0e66af4e46ccc84d597ce8 masto-fe/db/migrate/20161205214545_add_suspended_to_accounts.rb -rw-r--r-- 190 bytes
1d557305 — Nick Schonning Enable Rubocop Style/FrozenStringLiteralComment (#23793) 2 years ago
                                                                                
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddSuspendedToAccounts < ActiveRecord::Migration[5.0]
  def change
    add_column :accounts, :suspended, :boolean, null: false, default: false
  end
end