blob: 2cc4e4b15f1c7a902caea8a838b1b26ac8eaf282 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddIssuesIsPrivate < ActiveRecord::Migration
def self.up
add_column :issues, :is_private, :boolean, :default => false, :null => false
end
def self.down
remove_column :issues, :is_private
end
end
|