10 lines
234 B
Ruby
10 lines
234 B
Ruby
|
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
|