oops i forgot to commit as I go again

This commit is contained in:
2025-01-24 17:18:04 -06:00
parent a09e8245c0
commit 567aa4cb71
35 changed files with 1455 additions and 37 deletions
@@ -0,0 +1,17 @@
/*
Warnings:
- You are about to drop the `Application` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE "Application";
-- CreateTable
CREATE TABLE "App" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"domain" TEXT NOT NULL,
CONSTRAINT "App_pkey" PRIMARY KEY ("id")
);