Clean up patches Part VIII

* removing burndown days
pull/6827/head
Gregor Schmidt 13 years ago
parent c0077b2c33
commit a298b9f763
  1. 5
      app/models/burndown_day.rb
  2. 9
      db/migrate/20111014073605_drop_burndown_days.rb

@ -1,5 +0,0 @@
class BurndownDay < ActiveRecord::Base
unloadable
belongs_to :version
end

@ -0,0 +1,9 @@
class DropBurndownDays < ActiveRecord::Migration
def self.up
drop_table :burndown_days
end
def self.down
raise ActiveRecord::IrreversibleMigration
end
end
Loading…
Cancel
Save