class CreateApMetadata < ActiveRecord::Migration[6.0]
  def change
    create_table :ap_metadata do |t|
      t.string :project_name
      t.string :location_name
      t.text :notes
      t.integer :router_inventory_id
      t.string :latitude
      t.string :longitude
      t.text :scanned_data

      t.timestamps
    end
  end
end
