Skip to content

Commit 125cbc5

Browse files
committed
fix: schema colors for the bank job dataset
1 parent 63e0a86 commit 125cbc5

15 files changed

Lines changed: 30 additions & 17 deletions
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
2-
"DEFAULT": "#91C4F2",
3-
"bank": "#BEB8EB",
4-
"interpol": "#AFA2FF",
2+
"bank": "#91C4F2",
3+
"interpol": "#BEB8EB",
54
"sellmycar_com": "#75C9C8",
65
"nyc_dot": "#F6BDD1"
76
}

src/config/databases/the-bank-job/tables/accounts.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "bank.accounts",
2+
"schema": "bank",
3+
"name": "accounts",
34
"description": "Information about the bank accounts.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/authorized_vehicles.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "bank.authorized_vehicles",
2+
"schema": "bank",
3+
"name": "authorized_vehicles",
34
"description": "This table contains all vehicles authorized to enter the bank premises.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/cases.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "interpol.cases",
2+
"schema": "interpol",
3+
"name": "cases",
34
"description": "Interpol case records.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/cases_crime_types.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "interpol.cases_crime_types",
2+
"schema": "interpol",
3+
"name": "cases_crime_types",
34
"description": "This is a join table between cases and crime types.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/cases_criminals.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "interpol.cases_criminals",
2+
"schema": "interpol",
3+
"name": "cases_criminals",
34
"description": "This is a join table between cases and criminal aliases.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/crime_types.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "interpol.crime_types",
2+
"schema": "interpol",
3+
"name": "crime_types",
34
"description": "Crime types.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/criminal_aliases.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "interpol.criminal_aliases",
2+
"schema": "interpol",
3+
"name": "criminal_aliases",
34
"description": "This table contains all aliases used by criminals.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/criminals.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "interpol.criminals",
2+
"schema": "interpol",
3+
"name": "criminals",
34
"description": "Criminal records.",
45
"columns": [
56
{

src/config/databases/the-bank-job/tables/employees.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"name": "bank.employees",
2+
"schema": "bank",
3+
"name": "employees",
34
"description": "Bank employee records.",
45
"columns": [
56
{

0 commit comments

Comments
 (0)