osem-fcy/db/migrate/20141106141750_add_is_disabled_flag_to_user.rb

6 lines
141 B
Ruby
Raw Normal View History

class AddIsDisabledFlagToUser < ActiveRecord::Migration
def change
add_column :users, :is_disabled, :boolean, default: false
end
end