gitlabhq/db/migrate/20111009110913_add_projects_limit_to_user.rb
Dmitriy Zaporozhets d378468794 v1.0
2011-10-13 04:00:00 +03:00

6 lines
143 B
Ruby

class AddProjectsLimitToUser < ActiveRecord::Migration
def change
add_column :users, :projects_limit, :integer, :default => 10
end
end