class CreateExportHists < ActiveRecord::Migration[6.0]
  def change
    create_table :export_hists do |t|
      t.string :piece

      t.timestamps null: false
    end
  end
end