olwen_demo_app/db/migrate/00054_create_export_hists.rb
Nicolas Bally 7b2e6811dd initial
2020-06-05 11:10:02 +02:00

10 lines
178 B
Ruby

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