Implemented user event listeners

This commit is contained in:
2026-01-10 16:22:51 +01:00
parent 17ef2e4c94
commit 2899671321
12 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
CREATE TABLE IF NOT EXISTS connections_user (
id BIGINT PRIMARY KEY,
first_name VARCHAR(255) NOT NULL,
last_name VARCHAR(255) NOT NULL,
email VARCHAR(255) NOT NULL,
avatar_url VARCHAR(255) NOT NULL,
is_active BOOLEAN NOT NULL,
is_onboarded BOOLEAN NOT NULL,
is_email_verified BOOLEAN NOT NULL,
headline VARCHAR(255) NOT NULL,
version BIGINT NOT NULL
);