working properly well creation of profiles and creation of tables by user

This commit is contained in:
filipriec
2025-03-01 18:30:19 +01:00
parent f6d0920f4f
commit 87e465a36e
4 changed files with 51 additions and 30 deletions

View File

@@ -2,7 +2,7 @@
CREATE TABLE table_definitions (
id BIGSERIAL PRIMARY KEY,
deleted BOOLEAN NOT NULL DEFAULT FALSE,
table_name TEXT NOT NULL UNIQUE,
table_name TEXT NOT NULL,
columns JSONB NOT NULL,
indexes JSONB NOT NULL,
created_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,