jipe_app/db/migrate/20190613184241_create_export_hists.rb
2019-06-14 11:53:31 +02:00

10 lines
173 B
Ruby

class CreateExportHists < ActiveRecord::Migration
def change
create_table :export_hists do |t|
t.string :piece
t.timestamps null: false
end
end
end