Adding DBeaver Project

This commit is contained in:
Janus Knudsen 2025-01-23 17:17:34 +01:00
parent 2e0b20a53e
commit 4c0bdf5a99
10 changed files with 311 additions and 0 deletions

View file

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS swp.users (
id SERIAL PRIMARY KEY,
email VARCHAR(256) NOT NULL UNIQUE,
password_hash VARCHAR(256) NOT NULL,
security_stamp VARCHAR(36) NOT NULL,
email_confirmed BOOLEAN NOT NULL DEFAULT FALSE,
created_date TIMESTAMP NOT NULL,
last_login_date TIMESTAMP NULL
);