Create Residents table (#78)

* add resident table

* update prisma

* toc

* ignore md
This commit is contained in:
Baobeld 2025-02-07 16:30:12 -05:00 committed by GitHub
parent 9f889983dd
commit 0f95f330ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 50 additions and 18 deletions

View file

@ -0,0 +1,14 @@
-- CreateTable
CREATE TABLE "Resident" (
"id" TEXT NOT NULL,
"tenantId" TEXT NOT NULL,
"name" TEXT NOT NULL,
"phoneNumber" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
CONSTRAINT "Resident_pkey" PRIMARY KEY ("id")
);
-- AddForeignKey
ALTER TABLE "Resident" ADD CONSTRAINT "Resident_tenantId_fkey" FOREIGN KEY ("tenantId") REFERENCES "Tenant"("id") ON DELETE RESTRICT ON UPDATE CASCADE;