forked from GwentAPI/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GwentAPI_USERS.sql
132 lines (96 loc) · 2.2 KB
/
GwentAPI_USERS.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
USE `gwentapi`;
#User that customers will use
DROP USER 'client'@'localhost';
DROP USER 'client'@'127.0.0.1';
DROP USER 'dump'@'127.0.0.1';
DROP USER 'dump'@'localhost';
CREATE USER 'client'@'localhost' IDENTIFIED BY 'thereisonlyonekinginthenorth';
CREATE USER 'client'@'127.0.0.1' IDENTIFIED BY 'thereisonlyonekinginthenorth';
#User for backup purposes
CREATE USER 'dump'@'localhost' IDENTIFIED BY 'thenightisdarkandfullofterror';
CREATE USER 'dump'@'127.0.0.1' IDENTIFIED BY 'thenightisdarkandfullofterror';
GRANT SELECT
ON gwentapi.abilities
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.factions
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.glyphs
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.artists
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.artworks
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.categories
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.patches
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.rarities
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.rows
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.types
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.cardsrows
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.cardssubtypes
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.cards
TO 'client'@'localhost';
GRANT SELECT
ON gwentapi.abilities
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.factions
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.glyphs
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.artists
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.artworks
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.categories
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.patches
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.rarities
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.rows
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.types
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.cardsrows
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.cardssubtypes
TO 'client'@'127.0.0.1';
GRANT SELECT
ON gwentapi.cards
TO 'client'@'127.0.0.1';
GRANT SELECT, LOCK TABLES, TRIGGER, SHOW VIEW
ON `gwentapi`.*
TO 'dump'@'localhost';
GRANT SELECT, LOCK TABLES, TRIGGER, SHOW VIEW
ON `gwentapi`.*
TO 'dump'@'127.0.0.1';
FLUSH PRIVILEGES;