Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Vladislav Rykov
THSO.server
Commits
25435a1b
Commit
25435a1b
authored
Jun 08, 2020
by
Vladislav Rykov
Browse files
db schema updated
parent
e70a5d73
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/app/helpers/__pycache__/notification_manager.cpython-37.pyc
View file @
25435a1b
No preview for this file type
db.sql
View file @
25435a1b
...
@@ -58,7 +58,9 @@ CREATE TABLE public.pend_msgs (
...
@@ -58,7 +58,9 @@ CREATE TABLE public.pend_msgs (
app_key
character
varying
(
30
)
NOT
NULL
,
app_key
character
varying
(
30
)
NOT
NULL
,
dev_id
numeric
(
3
,
0
)
NOT
NULL
,
dev_id
numeric
(
3
,
0
)
NOT
NULL
,
msg
character
varying
(
150
)
NOT
NULL
,
msg
character
varying
(
150
)
NOT
NULL
,
ack
boolean
DEFAULT
false
NOT
NULL
ack
boolean
DEFAULT
false
NOT
NULL
,
sent_at
timestamp
(
6
)
DEFAULT
now
(),
confirmed_at
timestamp
(
6
)
);
);
...
@@ -69,6 +71,8 @@ CREATE TABLE public.pend_msgs (
...
@@ -69,6 +71,8 @@ CREATE TABLE public.pend_msgs (
--
--
CREATE
TABLE
public
.
users
(
CREATE
TABLE
public
.
users
(
first_name
character
varying
(
50
),
last_name
character
varying
(
50
),
name
character
varying
(
30
)
NOT
NULL
,
name
character
varying
(
30
)
NOT
NULL
,
password
character
varying
(
100
)
NOT
NULL
,
password
character
varying
(
100
)
NOT
NULL
,
role
character
varying
(
10
)
NOT
NULL
role
character
varying
(
10
)
NOT
NULL
...
@@ -99,7 +103,7 @@ CREATE TABLE public.notifications_queue (
...
@@ -99,7 +103,7 @@ CREATE TABLE public.notifications_queue (
nf_id
character
varying
(
10
)
NOT
NULL
,
nf_id
character
varying
(
10
)
NOT
NULL
,
app_key
character
varying
(
30
)
NOT
NULL
,
app_key
character
varying
(
30
)
NOT
NULL
,
dev_id
numeric
(
3
)
NOT
NULL
,
dev_id
numeric
(
3
)
NOT
NULL
,
fired_on
timestamp
(
6
)
NOT
NULL
fired_on
timestamp
(
6
)
NOT
NULL
DEFAULT
now
()
);
);
...
@@ -128,6 +132,7 @@ ALTER TABLE ONLY public.users
...
@@ -128,6 +132,7 @@ ALTER TABLE ONLY public.users
ADD
CONSTRAINT
users_pkey
PRIMARY
KEY
(
name
);
ADD
CONSTRAINT
users_pkey
PRIMARY
KEY
(
name
);
--
--
-- Name: applications applications_username_fkey; Type: FK CONSTRAINT; Schema: public; Owner: pi
-- Name: applications applications_username_fkey; Type: FK CONSTRAINT; Schema: public; Owner: pi
--
--
...
@@ -135,6 +140,14 @@ ALTER TABLE ONLY public.users
...
@@ -135,6 +140,14 @@ ALTER TABLE ONLY public.users
ALTER
TABLE
ONLY
public
.
applications
ALTER
TABLE
ONLY
public
.
applications
ADD
CONSTRAINT
applications_username_fkey
FOREIGN
KEY
(
username
)
REFERENCES
public
.
users
(
name
);
ADD
CONSTRAINT
applications_username_fkey
FOREIGN
KEY
(
username
)
REFERENCES
public
.
users
(
name
);
ALTER
TABLE
ONLY
public
.
pend_msgs
ADD
CONSTRAINT
applications_pkey
PRIMARY
KEY
(
app_key
,
dev_id
);
ALTER
TABLE
ONLY
public
.
pend_msgs
ADD
CONSTRAINT
pend_msgs_app_key_fkey
FOREIGN
KEY
(
app_key
)
REFERENCES
public
.
applications
(
app_key
);
--
--
-- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: pi
-- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: pi
--
--
...
@@ -160,8 +173,5 @@ ALTER TABLE ONLY public.notifications_queue
...
@@ -160,8 +173,5 @@ ALTER TABLE ONLY public.notifications_queue
ADD
CONSTRAINT
notifications_queue_app_key_fkey
FOREIGN
KEY
(
app_key
,
nf_id
,
dev_id
)
REFERENCES
public
.
notifications
(
app_key
,
id
,
dev_id
);
ADD
CONSTRAINT
notifications_queue_app_key_fkey
FOREIGN
KEY
(
app_key
,
nf_id
,
dev_id
)
REFERENCES
public
.
notifications
(
app_key
,
id
,
dev_id
);
INSERT
INTO
public
.
users
VALUES
(
'admin'
,
'$2b$12$chdF4ji1maIRLd4ms4s4yugFv.2BTvOAwiaWi6iRlTJzlGKjpTcA.'
,
'admin'
)
INSERT
INTO
public
.
users
VALUES
(
'admin'
,
'$2b$12$chdF4ji1maIRLd4ms4s4yugFv.2BTvOAwiaWi6iRlTJzlGKjpTcA.'
,
'superuser'
)
--
-- PostgreSQL database dump complete
--
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment