This repository has been archived on 2026-04-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Inventory_backend/prisma/migrations/20250921000000_add_profiles_table/migration.sql
2025-09-17 23:11:25 +02:00

13 lines
413 B
SQL

CREATE TABLE "profiles" (
"id" TEXT PRIMARY KEY,
"firstName" TEXT NOT NULL,
"lastName" TEXT NOT NULL,
"isActive" BOOLEAN NOT NULL DEFAULT TRUE,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP
);
INSERT INTO "profiles" ("id", "firstName", "lastName")
VALUES ('admin-default-profile', 'Admin', 'General')
ON CONFLICT DO NOTHING;