feat: Create collection file for routes

This commit is contained in:
Björn Benouarets
2025-08-11 22:15:32 +02:00
commit f00ecb8155
14 changed files with 482 additions and 0 deletions

12
sql/secnex_support.sql Normal file
View File

@@ -0,0 +1,12 @@
-- CREATE DATABASE "secnex_PRD";
CREATE SCHEMA IF NOT EXISTS "support";
CREATE TABLE IF NOT EXISTS "public"."user" (
"id" SERIAL PRIMARY KEY,
"name" VARCHAR(255) NOT NULL,
"email" VARCHAR(255) NOT NULL,
"password" VARCHAR(255) NOT NULL,
"created_at" TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updated_at" TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);