class CreateStaticRoutes < ActiveRecord::Migration[6.0]
  def change
    create_table :static_routes do |t|
      t.string :routing_name
      t.integer :organisation_id
      t.integer :router_inventory_id
      t.integer :location_network_id
      t.string  :tagging_lists
      t.timestamps
    end
  end
end
