Issue #83 - Project limit
This commit is contained in:
parent
9840102651
commit
67f0c62d07
13 changed files with 45 additions and 9 deletions
|
@ -0,0 +1,9 @@
|
|||
class RemoveAllowCreateRepoFromUser < ActiveRecord::Migration
|
||||
def up
|
||||
remove_column :users, :allowed_create_repo
|
||||
end
|
||||
|
||||
def down
|
||||
add_column :users, :allowed_create_repo, :boolean, :default => true, :null => false
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue