/*
  Warnings:

  - You are about to drop the `Networing` table. If the table is not empty, all the data it contains will be lost.

*/
-- DropTable
DROP TABLE "Networing";

-- CreateTable
CREATE TABLE "Networking" (
    "id" TEXT NOT NULL,
    "firstName" VARCHAR(250) NOT NULL,
    "lastName" VARCHAR(250) NOT NULL,
    "phoneNumber" VARCHAR(250) NOT NULL,
    "email" VARCHAR(250) NOT NULL,
    "activity" VARCHAR(250) NOT NULL,
    "needForNetworking" VARCHAR(250) NOT NULL,

    CONSTRAINT "Networking_pkey" PRIMARY KEY ("id")
);
