/*
  Warnings:

  - You are about to drop the column `staatus` on the `Connection` table. All the data in the column will be lost.

*/
-- AlterTable
ALTER TABLE "Connection" DROP COLUMN "staatus",
ADD COLUMN     "accepted" BOOLEAN NOT NULL DEFAULT false;

-- DropEnum
DROP TYPE "ConnectionStatus";
