GithubHelp home page GithubHelp logo

sebastianrejas19 / the-covid-vaccine-effectiveness Goto Github PK

View Code? Open in Web Editor NEW

This project forked from franciscovilchezv/the-covid-vaccine-effectiveness

0.0 0.0 0.0 126 KB

This project tries to measure the real effectiveness of the COVID vaccine

the-covid-vaccine-effectiveness's Introduction

The real COVID vaccine effectiveness

This project tries to measure the real effectiveness of the COVID vaccine.

For achieving that, we are going to start by tracking the COVID cases and their location.

Team

GitHub ID Position
@nex3 Project Manager
@franciscovilchezv Developer
@SebastianRejas19 Administrador de Base de Datos

Database design

This is an initial proposal for the App's Database. Changes will likely be done in the future.

Tabla user

mysql> desc user;
+-----------------+-----------------------+------+-----+---------+----------------+
| Field           | Type                  | Null | Key | Default | Extra          |
+-----------------+-----------------------+------+-----+---------+----------------+
| user_id         | int                   | NO   | PRI | NULL    | auto_increment |
| document_type   | enum('ID','PASSPORT') | NO   |     | NULL    |                |
| document_number | varchar(20)           | NO   |     | NULL    |                |
| fullname        | varchar(255)          | NO   |     | NULL    |                |
| created_date    | datetime              | YES  |     | NULL    |                |
| modified_date   | datetime              | YES  |     | NULL    |                |
+-----------------+-----------------------+------+-----+---------+----------------+
6 rows in set (0.00 sec)

Tabla vaccine_shot

user_id es un foerign key proveniente de la tabla user

mysql> desc vaccine_shot;
+------------------+------------------------------------------------+------+-----+---------+----------------+
| Field            | Type                                           | Null | Key | Default | Extra          |
+------------------+------------------------------------------------+------+-----+---------+----------------+
| vaccine_shot_id  | int                                            | NO   | PRI | NULL    | auto_increment |
| vaccine_type     | enum('PFIZER','J&J','SINOPHARM','ASTRAZENECA') | NO   |     | NULL    |                |
| vaccination_date | datetime                                       | NO   |     | NULL    |                |
| dose_number      | int                                            | NO   |     | NULL    |                |
| user_id          | int                                            | NO   | MUL | NULL    |                |
| created_date     | datetime                                       | YES  |     | NULL    |                |
| modified_date    | datetime                                       | YES  |     | NULL    |                |
+------------------+------------------------------------------------+------+-----+---------+----------------+
7 rows in set (0.00 sec)

Tabla covid_report

user_id es un foerign key proveniente de la tabla user

mysql> desc covid_report;
+----------------------+---------------+------+-----+---------+----------------+
| Field                | Type          | Null | Key | Default | Extra          |
+----------------------+---------------+------+-----+---------+----------------+
| covid_report_id      | int           | NO   | PRI | NULL    | auto_increment |
| latitude             | decimal(11,8) | NO   |     | NULL    |                |
| longitude            | decimal(11,8) | NO   |     | NULL    |                |
| public_exposure_date | datetime      | NO   |     | NULL    |                |
| user_id              | int           | NO   | MUL | NULL    |                |
| created_date         | datetime      | YES  |     | NULL    |                |
| modified_date        | datetime      | YES  |     | NULL    |                |
+----------------------+---------------+------+-----+---------+----------------+
7 rows in set (0.00 sec)

Additional information

Project created for academical purposes.

the-covid-vaccine-effectiveness's People

Contributors

franciscovilchezv avatar sebastianrejas19 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.