class CreateLoggings < ActiveRecord::Migration[6.0]
  def self.up
    create_table :loggings do |t|
      t.string :name
      t.string :logging_type
      t.string :is_enabled
      t.string :upload_type
      t.integer :location_network_id
      t.string :extra_data

      t.timestamps
    end
  end
  def self.down
   drop_table :loggings
  end
end
