# coding: utf-8
class AddPreownedToDoneMaterials < ActiveRecord::Migration
  def self.up
    add_column :done_materials, :preowned, :boolean#, :default => false # Б/У
  end
  
  def self.down
    remove_column :done_materials, :preowned
  end
end
