Massive Cleanup
[cs356-p2-videostore.git] / db / migrate / 012_rentables_director_int_to_str.rb
1 class RentablesDirectorIntToStr < ActiveRecord::Migration
2   def self.up
3     change_column :rentables, :director, :string
4   end
5
6   def self.down
7     change_column :rentables, :director, :integer
8   end
9 end