class AddSpecToMateriels < ActiveRecord::Migration[6.0]
  def change
    add_column :materiels, :spec, :string, limit: 40, default: ""
    add_column :materiels, :created_by, :string, limit: 40, default: ""
  end
end
