-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b22de5
commit fe9c3e6
Showing
3 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
-- phpMyAdmin SQL Dump | ||
-- version 4.8.5 | ||
-- https://www.phpmyadmin.net/ | ||
-- | ||
-- Host: 127.0.0.1 | ||
-- Generation Time: Jul 27, 2020 at 01:18 AM | ||
-- Server version: 10.1.38-MariaDB | ||
-- PHP Version: 7.3.2 | ||
|
||
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: `clinic` | ||
-- | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `appointment` | ||
-- | ||
|
||
CREATE TABLE `appointment` ( | ||
`id` int(11) NOT NULL, | ||
`fullname` varchar(255) NOT NULL, | ||
`email` varchar(255) NOT NULL, | ||
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
`time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', | ||
`message` text NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `specialist` | ||
-- | ||
|
||
CREATE TABLE `specialist` ( | ||
`id` int(11) NOT NULL, | ||
`fullname` varchar(255) NOT NULL, | ||
`email` varchar(255) NOT NULL, | ||
`password` varchar(255) NOT NULL, | ||
`specialization` varchar(255) NOT NULL, | ||
`state` varchar(255) NOT NULL, | ||
`country` varchar(255) NOT NULL, | ||
`mobile` varchar(255) NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
|
||
-- | ||
-- Dumping data for table `specialist` | ||
-- | ||
|
||
INSERT INTO `specialist` (`id`, `fullname`, `email`, `password`, `specialization`, `state`, `country`, `mobile`) VALUES | ||
(0, 'hussaini muhammad auwal', 'hauwal4969@gmail.com', 'admin', 'family', 'Katsina', 'nigeria', '+2341829938402'), | ||
(2, 'John Doe', 'johndoe@gmail.com', 'root', 'neurology', 'alabama', 'USA', '+1(123)323-1221'); | ||
|
||
-- | ||
-- Indexes for dumped tables | ||
-- | ||
|
||
-- | ||
-- Indexes for table `appointment` | ||
-- | ||
ALTER TABLE `appointment` | ||
ADD PRIMARY KEY (`id`); | ||
|
||
-- | ||
-- Indexes for table `specialist` | ||
-- | ||
ALTER TABLE `specialist` | ||
ADD PRIMARY KEY (`id`); | ||
COMMIT; | ||
|
||
/*!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 */; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,4 +98,11 @@ | |
<script src="js/jquery.waypoints.min.js"></script> | ||
<script src="js/main.js"></script> | ||
</body> | ||
</html> | ||
</html> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|