add: 004_table_sessions

This commit is contained in:
realaltffour 2020-07-13 12:10:04 +03:00
parent 50ce999a01
commit 91ddd2814e
No known key found for this signature in database
GPG Key ID: C1265D839D44DCB1

View File

@ -0,0 +1,6 @@
CREATE TABLE sessions_schema.sessions (
sess_id text NOT NULL
client_ip text NOT NULL
expiry_date timestamp NOT NULL
is_active bool NOT NULL
)