10 lines
173 B
Ruby
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
|