debian-mirror-gitlab/db/migrate/20150713160110_add_project_view_to_users.rb
2016-06-16 23:09:34 +05:30

7 lines
158 B
Ruby

# rubocop:disable all
class AddProjectViewToUsers < ActiveRecord::Migration
def change
add_column :users, :project_view, :integer, default: 0
end
end