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

20120301185805_add_theme_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c2e55692b0bfe555e968d95d882ef0ddf00352f (plain)
1
2
3
4
5
6
class AddThemeToUser < ActiveRecord::Migration
  def change
    add_column :users, :theme_id, :integer, :null => false, :default => 1

  end
end