Adding DBeaver Project
This commit is contained in:
parent
2e0b20a53e
commit
c0885d9029
10 changed files with 292 additions and 0 deletions
9
SqlManagement/Scripts/Script.sql
Normal file
9
SqlManagement/Scripts/Script.sql
Normal 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
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue