From 8ace3ccbd0c897a6f36e240259c0a0560a51bd80 Mon Sep 17 00:00:00 2001 From: hi15 <hi15@inf.ufpr.br> Date: Thu, 11 Oct 2018 11:53:27 -0300 Subject: [PATCH] Add auxiliar tables matricula_localizacao and matricula matricula_dependencia_adm --- matricula_dependencia_adm.json | 12 ++++++++++++ matricula_localizacao.json | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 matricula_dependencia_adm.json create mode 100644 matricula_localizacao.json diff --git a/matricula_dependencia_adm.json b/matricula_dependencia_adm.json new file mode 100644 index 0000000..a67be96 --- /dev/null +++ b/matricula_dependencia_adm.json @@ -0,0 +1,12 @@ +{ + "pairing_description": "Tabela auxliar de quantidade Matrículas agregadas por dependência administrativa", + "data_source": "LDE - Laboratório de Dados Educacionais", + "pk": [], + "foreign_keys": [ + { + "keys": ["estado_id"], + "reference_columns": ["id"], + "reference_table": "estado" + } + ] +} diff --git a/matricula_localizacao.json b/matricula_localizacao.json new file mode 100644 index 0000000..69b4260 --- /dev/null +++ b/matricula_localizacao.json @@ -0,0 +1,12 @@ +{ + "pairing_description": "Tabela auxiliar de quantidade de Matrículas agregadas por localicação", + "data_source": "LDE - Laboratório de Dados Educacionais", + "pk": [], + "foreign_keys": [ + { + "keys": ["estado_id"], + "reference_columns": ["id"], + "reference_table": "estado" + } + ] +} -- GitLab