You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config/databases/nba/tables/games.json
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,47 +1,47 @@
1
1
{
2
2
"name": "games",
3
-
"description": "",
3
+
"description": "This table contains all NBA games since NBA was found in 1949.",
4
4
"schemaColor": "#91C4F2",
5
5
"columns": [
6
6
{
7
7
"name": "id",
8
8
"key": true,
9
-
"description": "",
9
+
"description": "Unique identifier of an NBA game.",
10
10
"type": "bigint"
11
11
},
12
12
{
13
13
"name": "game_date",
14
-
"description": "",
14
+
"description": "When the game was played (calculated with EST time).",
15
15
"type": "date"
16
16
},
17
17
{
18
18
"name": "season",
19
-
"description": "",
19
+
"description": "A year of a NBA season.",
20
20
"type": "integer"
21
21
},
22
22
{
23
23
"name": "home_team_id",
24
-
"description": "",
24
+
"description": "An ID of a team that played on their home court.",
25
25
"type": "bigint"
26
26
},
27
27
{
28
28
"name": "visitor_team_id",
29
-
"description": "",
29
+
"description": "An ID of a visiting team.",
30
30
"type": "bigint"
31
31
},
32
32
{
33
33
"name": "game_type",
34
-
"description": "",
34
+
"description": "Type of a game depending on when it was played during a season. Possible values are **preseason**, **regular**, **allstar**, **playin** or **playoff**.",
35
35
"type": "text"
36
36
},
37
37
{
38
38
"name": "home_team_points",
39
-
"description": "",
39
+
"description": "How many points a home team scored.",
40
40
"type": "integer"
41
41
},
42
42
{
43
43
"name": "visitor_team_points",
44
-
"description": "",
44
+
"description": "How many points a visiting team scored.",
0 commit comments