gitlab-org--gitlab-foss/db/migrate/20150713160110_add_project_...

7 lines
163 B
Ruby

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