# -*- coding: utf-8 -*-
class AddShowToMaterialDetails < ActiveRecord::Migration
  def self.up
    add_column :material_details, :show, :boolean,  :default => true
  end

  def self.down
#    remove_column :material_details, :show
  end
end
