gitlabhq/db/migrate/20111009110913_add_projects_limit_to_user.rb
2011-10-09 11:15:01 -07:00

6 lines
143 B
Ruby

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