/*
  Warnings:

  - You are about to drop the column `streetName` on the `Users` table. All the data in the column will be lost.
  - You are about to drop the column `streetNumber` on the `Users` table. All the data in the column will be lost.

*/
-- AlterTable
ALTER TABLE `Users` DROP COLUMN `streetName`,
    DROP COLUMN `streetNumber`;
