Massive Cleanup
[cs356-p2-videostore.git] / db / migrate / 032_fix_rentables.rb
1 class FixRentables < ActiveRecord::Migration
2   def self.up
3     drop_table :gamegenres
4     drop_table :medias
5     drop_table :gameplatforms
6     drop_table :videogenres
7   end
8
9   def self.down
10     raise ActiveRecord::IrreversibleMigration
11   end
12 end