Massive Cleanup
[cs356-p2-videostore.git] / db / migrate / 010_customers_text_address.rb
1 class CustomersTextAddress < ActiveRecord::Migration
2   def self.up
3     change_column :customers, :address, :text
4   end
5
6   def self.down
7     change_column :customers, :address, :string
8   end
9 end