gitlabhq/db/migrate/20111009110913_add_projects_limit_to_user.rb

6 lines
143 B
Ruby
Raw Normal View History

2011-10-13 03:00:00 +02:00
class AddProjectsLimitToUser < ActiveRecord::Migration
def change
add_column :users, :projects_limit, :integer, :default => 10
end
end