blob: a8d6fe9e6a7ff243658ca31d773b1ea476ea8823 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddRolesBuiltin < ActiveRecord::Migration
def self.up
add_column :roles, :builtin, :integer, :default => 0, :null => false
end
def self.down
remove_column :roles, :builtin
end
end
|