2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-10-27 19:09:22 +01:00
|
|
|
class AddDefaultToRoles < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
add_column :roles, :use_default, :boolean, :default => false
|
|
|
|
add_column :roles, :use_default_for_owner, :boolean, :default => false
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :roles, :use_default
|
|
|
|
remove_column :roles, :use_default_for_owner
|
|
|
|
end
|
|
|
|
end
|