debian-mirror-gitlab/db/migrate/20130218141507_remove_closed_from_issue.rb
2016-06-16 23:09:34 +05:30

11 lines
190 B
Ruby

# rubocop:disable all
class RemoveClosedFromIssue < ActiveRecord::Migration
def up
remove_column :issues, :closed
end
def down
add_column :issues, :closed, :boolean
end
end