PHP Classes

File: corona.sql

Recommend this page to a friend!
  Classes of Max Base   PHP Corona Virus Database   corona.sql   Download  
File: corona.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Corona Virus Database
An API to lookup information about Corona Virus
Author: By
Last change:
Date: 4 years ago
Size: 2,000 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Feb 28, 2020 at 02:56 PM -- Server version: 10.1.44-MariaDB-0ubuntu0.18.04.1 -- PHP Version: 7.4.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `corona2` -- -- -------------------------------------------------------- -- -- Table structure for table `country` -- CREATE TABLE `country` ( `id` bigint(50) NOT NULL, `name` varchar(50) NOT NULL, `totalCase` int(11) NOT NULL, `totalDeath` int(11) NOT NULL, `totalRecovered` int(11) NOT NULL, `datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `token` -- CREATE TABLE `token` ( `id` bigint(50) NOT NULL, `token` varchar(100) NOT NULL, `datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `canView` bit(1) NOT NULL DEFAULT b'1', `canFilter` bit(1) NOT NULL DEFAULT b'1', `canSearch` bit(1) NOT NULL DEFAULT b'1', `getAccess` bit(1) NOT NULL DEFAULT b'0', `postAccess` bit(1) NOT NULL DEFAULT b'1', `tokenInHeader` bit(1) NOT NULL DEFAULT b'1', `canTotal` bit(1) NOT NULL DEFAULT b'1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Indexes for dumped tables -- -- -- Indexes for table `country` -- ALTER TABLE `country` ADD PRIMARY KEY (`id`); -- -- Indexes for table `token` -- ALTER TABLE `token` ADD PRIMARY KEY (`id`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;