Update, profile and part of admin

This commit is contained in:
EdiFarcas
2025-04-29 19:33:35 +03:00
parent 6cff4acc36
commit 9a33acbf53
9 changed files with 120 additions and 94 deletions
@@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "Video" (
"id" TEXT NOT NULL,
"URL" TEXT,
CONSTRAINT "Video_pkey" PRIMARY KEY ("id")
);
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Video" ADD COLUMN "coins" INTEGER NOT NULL DEFAULT 0;
@@ -0,0 +1,8 @@
/*
Warnings:
- You are about to drop the `Video` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE "Video";