class DropSchoolStaticIp < ActiveRecord::Migration[6.1]
  def up
    drop_table :SchoolStaticIP
  end

  def down
    create_table :SchoolStaticIP
  end
end
