Adding DBeaver Project
This commit is contained in:
parent
2e0b20a53e
commit
4c0bdf5a99
10 changed files with 311 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