gitlabhq/db/migrate/20111220190817_add_coloscheme_option_to_user.rb
2011-12-20 22:47:09 +02:00

6 lines
162 B
Ruby

class AddColoschemeOptionToUser < ActiveRecord::Migration
def change
add_column :users, :dark_scheme, :boolean, :default => false, :null => false
end
end