class CreateLogs < ActiveRecord::Migration[6.0]
  def change
    create_table :logs do |t|
      t.string :logid
      t.string :event_id
      t.string :device_id
      t.string :timestamp
      t.string :content

      t.timestamps null: false
    end
  end
end
