debian-mirror-gitlab/db/migrate/20150713160110_add_project_view_to_users.rb
2019-01-03 12:48:30 +05:30

6 lines
158 B
Ruby

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