fix: adjust from boilerplate to lti project

This commit is contained in:
Hafizh A. Y
2025-09-25 11:08:01 +07:00
parent 10506238ae
commit c136206f2d
36 changed files with 76 additions and 118 deletions
@@ -0,0 +1,8 @@
-- Users
CREATE TABLE IF NOT EXISTS users (
id BIGSERIAL PRIMARY KEY,
name VARCHAR,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now(),
deleted_at TIMESTAMPTZ
);