class CreateReports < ActiveRecord::Migration[6.0]
  def change
    create_table :reports do |t|
      t.string :title
      t.datetime :from_time
      t.datetime :to_time

      t.timestamps
    end
  end
end
