Skip to content

Commit b308bdb

Browse files
committed
Add migration to allow user role CRUD on tables.
Tables: teams and team_members.
1 parent 60049cb commit b308bdb

File tree

2 files changed

+292
-0
lines changed
  • backups/migrations/1582141486977_00_user_permissions

2 files changed

+292
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
CREATE TABLE public.team_members (
2+
id integer NOT NULL,
3+
"teamId" integer NOT NULL,
4+
"userId" integer NOT NULL
5+
);
6+
CREATE TABLE public.teams (
7+
id integer NOT NULL,
8+
name text NOT NULL,
9+
description text NOT NULL
10+
);
11+
CREATE TABLE public.challenges (
12+
id integer NOT NULL,
13+
description text NOT NULL,
14+
"createdByUserId" integer NOT NULL,
15+
name text
16+
);
17+
CREATE SEQUENCE public.challenges_id_seq
18+
AS integer
19+
START WITH 1
20+
INCREMENT BY 1
21+
NO MINVALUE
22+
NO MAXVALUE
23+
CACHE 1;
24+
ALTER SEQUENCE public.challenges_id_seq OWNED BY public.challenges.id;
25+
CREATE SEQUENCE public.team_id_seq
26+
AS integer
27+
START WITH 1
28+
INCREMENT BY 1
29+
NO MINVALUE
30+
NO MAXVALUE
31+
CACHE 1;
32+
ALTER SEQUENCE public.team_id_seq OWNED BY public.teams.id;
33+
CREATE SEQUENCE public.team_members_id_seq
34+
AS integer
35+
START WITH 1
36+
INCREMENT BY 1
37+
NO MINVALUE
38+
NO MAXVALUE
39+
CACHE 1;
40+
ALTER SEQUENCE public.team_members_id_seq OWNED BY public.team_members.id;
41+
CREATE TABLE public.teams_challenges (
42+
id integer NOT NULL,
43+
"teamId" integer NOT NULL,
44+
"challengeId" integer NOT NULL
45+
);
46+
CREATE SEQUENCE public.teams_challenges_id_seq
47+
AS integer
48+
START WITH 1
49+
INCREMENT BY 1
50+
NO MINVALUE
51+
NO MAXVALUE
52+
CACHE 1;
53+
ALTER SEQUENCE public.teams_challenges_id_seq OWNED BY public.teams_challenges.id;
54+
CREATE TABLE public.users (
55+
id integer NOT NULL,
56+
email text NOT NULL,
57+
password text NOT NULL,
58+
role text,
59+
name text
60+
);
61+
CREATE SEQUENCE public.users_id_seq
62+
AS integer
63+
START WITH 1
64+
INCREMENT BY 1
65+
NO MINVALUE
66+
NO MAXVALUE
67+
CACHE 1;
68+
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
69+
ALTER TABLE ONLY public.challenges ALTER COLUMN id SET DEFAULT nextval('public.challenges_id_seq'::regclass);
70+
ALTER TABLE ONLY public.team_members ALTER COLUMN id SET DEFAULT nextval('public.team_members_id_seq'::regclass);
71+
ALTER TABLE ONLY public.teams ALTER COLUMN id SET DEFAULT nextval('public.team_id_seq'::regclass);
72+
ALTER TABLE ONLY public.teams_challenges ALTER COLUMN id SET DEFAULT nextval('public.teams_challenges_id_seq'::regclass);
73+
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
74+
ALTER TABLE ONLY public.challenges
75+
ADD CONSTRAINT challenges_pkey PRIMARY KEY (id);
76+
ALTER TABLE ONLY public.team_members
77+
ADD CONSTRAINT team_members_pkey PRIMARY KEY (id);
78+
ALTER TABLE ONLY public.teams
79+
ADD CONSTRAINT team_pkey PRIMARY KEY (id);
80+
ALTER TABLE ONLY public.teams_challenges
81+
ADD CONSTRAINT teams_challenges_pkey PRIMARY KEY (id);
82+
ALTER TABLE ONLY public.users
83+
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
84+
ALTER TABLE ONLY public.challenges
85+
ADD CONSTRAINT "challenges_createdByUserId_fkey" FOREIGN KEY ("createdByUserId") REFERENCES public.users(id) ON UPDATE RESTRICT ON DELETE RESTRICT;
86+
ALTER TABLE ONLY public.team_members
87+
ADD CONSTRAINT "team_members_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES public.teams(id) ON UPDATE RESTRICT ON DELETE RESTRICT;
88+
ALTER TABLE ONLY public.team_members
89+
ADD CONSTRAINT "team_members_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE RESTRICT ON DELETE RESTRICT;
90+
ALTER TABLE ONLY public.teams_challenges
91+
ADD CONSTRAINT "teams_challenges_challengeId_fkey" FOREIGN KEY ("challengeId") REFERENCES public.challenges(id) ON UPDATE RESTRICT ON DELETE RESTRICT;
92+
ALTER TABLE ONLY public.teams_challenges
93+
ADD CONSTRAINT "teams_challenges_teamId_fkey" FOREIGN KEY ("teamId") REFERENCES public.teams(id) ON UPDATE RESTRICT ON DELETE RESTRICT;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
- args:
2+
allowlist: []
3+
functions: []
4+
query_collections: []
5+
remote_schemas:
6+
- comment: null
7+
definition:
8+
forward_client_headers: true
9+
headers: []
10+
timeout_seconds: 60
11+
url: http://authentication-service:3000/graphql
12+
url_from_env: null
13+
name: auth
14+
- comment: null
15+
definition:
16+
forward_client_headers: true
17+
headers: []
18+
timeout_seconds: 60
19+
url: http://mailer-service:3000/graphql
20+
url_from_env: null
21+
name: mailer
22+
tables:
23+
- array_relationships: []
24+
computed_fields: []
25+
configuration:
26+
custom_column_names: {}
27+
custom_root_fields:
28+
delete: null
29+
insert: null
30+
select: null
31+
select_aggregate: null
32+
select_by_pk: null
33+
update: null
34+
delete_permissions: []
35+
event_triggers: []
36+
insert_permissions: []
37+
is_enum: false
38+
object_relationships: []
39+
select_permissions: []
40+
table: challenges
41+
update_permissions: []
42+
- array_relationships: []
43+
computed_fields: []
44+
configuration:
45+
custom_column_names: {}
46+
custom_root_fields:
47+
delete: null
48+
insert: null
49+
select: null
50+
select_aggregate: null
51+
select_by_pk: null
52+
update: null
53+
delete_permissions:
54+
- comment: null
55+
permission:
56+
filter: {}
57+
role: user
58+
event_triggers: []
59+
insert_permissions:
60+
- comment: null
61+
permission:
62+
check: {}
63+
columns:
64+
- id
65+
- teamId
66+
- userId
67+
set: {}
68+
role: user
69+
is_enum: false
70+
object_relationships:
71+
- comment: null
72+
name: team
73+
using:
74+
foreign_key_constraint_on: teamId
75+
- comment: null
76+
name: user
77+
using:
78+
foreign_key_constraint_on: userId
79+
select_permissions:
80+
- comment: null
81+
permission:
82+
allow_aggregations: false
83+
columns:
84+
- id
85+
- teamId
86+
- userId
87+
computed_fields: []
88+
filter: {}
89+
role: user
90+
table: team_members
91+
update_permissions:
92+
- comment: null
93+
permission:
94+
columns:
95+
- id
96+
- teamId
97+
- userId
98+
filter: {}
99+
set: {}
100+
role: user
101+
- array_relationships: []
102+
computed_fields: []
103+
configuration:
104+
custom_column_names: {}
105+
custom_root_fields:
106+
delete: null
107+
insert: null
108+
select: null
109+
select_aggregate: null
110+
select_by_pk: null
111+
update: null
112+
delete_permissions:
113+
- comment: null
114+
permission:
115+
filter: {}
116+
role: user
117+
event_triggers: []
118+
insert_permissions:
119+
- comment: null
120+
permission:
121+
check: {}
122+
columns:
123+
- id
124+
- description
125+
- name
126+
set: {}
127+
role: user
128+
is_enum: false
129+
object_relationships: []
130+
select_permissions:
131+
- comment: null
132+
permission:
133+
allow_aggregations: false
134+
columns:
135+
- id
136+
- description
137+
- name
138+
computed_fields: []
139+
filter: {}
140+
role: user
141+
table: teams
142+
update_permissions:
143+
- comment: null
144+
permission:
145+
columns:
146+
- id
147+
- description
148+
- name
149+
filter: {}
150+
set: {}
151+
role: user
152+
- array_relationships: []
153+
computed_fields: []
154+
configuration:
155+
custom_column_names: {}
156+
custom_root_fields:
157+
delete: null
158+
insert: null
159+
select: null
160+
select_aggregate: null
161+
select_by_pk: null
162+
update: null
163+
delete_permissions: []
164+
event_triggers: []
165+
insert_permissions: []
166+
is_enum: false
167+
object_relationships:
168+
- comment: null
169+
name: challenge
170+
using:
171+
foreign_key_constraint_on: challengeId
172+
- comment: null
173+
name: team
174+
using:
175+
foreign_key_constraint_on: teamId
176+
select_permissions: []
177+
table: teams_challenges
178+
update_permissions: []
179+
- array_relationships: []
180+
computed_fields: []
181+
configuration:
182+
custom_column_names: {}
183+
custom_root_fields:
184+
delete: null
185+
insert: null
186+
select: null
187+
select_aggregate: null
188+
select_by_pk: null
189+
update: null
190+
delete_permissions: []
191+
event_triggers: []
192+
insert_permissions: []
193+
is_enum: false
194+
object_relationships: []
195+
select_permissions: []
196+
table: users
197+
update_permissions: []
198+
version: 2
199+
type: replace_metadata

0 commit comments

Comments
 (0)