Files
discourse/db/migrate/20130603192412_add_blocked_to_users.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
167 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddBlockedToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :blocked, :boolean, default: false
end
end