class CreateStaticRoutingLists < ActiveRecord::Migration[6.0]
  def self.up
    create_table :static_routing_lists do |t|
      t.string :network
      t.string :bitmask
      t.string :gateway
      # t.integer :organisation_id
      t.integer :static_route_id
      t.timestamps
    end
  end
  def self.down
    drop_table :static_routing_lists 
  end
end
