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

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