Files
discourse/db/migrate/20140813175357_add_default_to_active.rb
T

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

8 lines
183 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddDefaultToActive < ActiveRecord::Migration[4.2]
def change
change_column :users, :active, :boolean, default: false, null: false
end
end