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

20150713160110_add_project_view_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe3d206df891eedd6eee58aa63add2b5c30bfda8 (plain)
1
2
3
4
5
class AddProjectViewToUsers < ActiveRecord::Migration
  def change
    add_column :users, :project_view, :integer, default: 0
  end
end