class CreateVLans < ActiveRecord::Migration[6.0]
  def change
    create_table :v_lans do |t|
      t.integer :organisation_id
      t.integer :network_ssid_id
      t.string :v_lan_id
      t.string :ip_type
      t.string :ip_address
      t.string :net_mask
      t.string :dhcp_start_range
      t.string :dhcp_end_range
      t.string :dns1
      t.string :dns2
      t.string :gateway

      t.timestamps
    end
  end
end
