Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20120413135904_add_blocked_field_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 050450bf034d2c855cafb31ce253703c7e726d91 (plain)
1
2
3
4
5
class AddBlockedFieldToUser < ActiveRecord::Migration
  def change
    add_column :users, :blocked, :boolean, :null => false, :default => false
  end
end