-
Notifications
You must be signed in to change notification settings - Fork 123
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
d000988
commit 8a4ea29
Showing
4 changed files
with
83 additions
and
185 deletions.
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
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
-- https://www.phpmyadmin.net/ | ||
-- | ||
-- Host: localhost | ||
-- Generation Time: Mar 15, 2020 at 04:49 PM | ||
-- Generation Time: Mar 16, 2020 at 02:34 AM | ||
-- Server version: 10.1.31-MariaDB | ||
-- PHP Version: 7.2.4 | ||
|
||
|
@@ -76,7 +76,9 @@ INSERT INTO `appointmenttb` (`pid`, `ID`, `fname`, `lname`, `gender`, `email`, ` | |
(2, 8, 'Alia', 'Bhatt', 'Female', '[email protected]', '8976897689', 'Ganesh', 550, '2020-03-21', '10:00:00', 1, 1), | ||
(5, 9, 'Gautam', 'Shankararam', 'Male', '[email protected]', '9070897653', 'Ganesh', 550, '2020-03-19', '20:00:00', 1, 0), | ||
(4, 10, 'Kishan', 'Lal', 'Male', '[email protected]', '8838489464', 'Ganesh', 550, '0000-00-00', '14:00:00', 1, 0), | ||
(4, 11, 'Kishan', 'Lal', 'Male', '[email protected]', '8838489464', 'Dinesh', 700, '2020-03-27', '15:00:00', 1, 1); | ||
(4, 11, 'Kishan', 'Lal', 'Male', '[email protected]', '8838489464', 'Dinesh', 700, '2020-03-27', '15:00:00', 1, 1), | ||
(9, 12, 'William', 'Blake', 'Male', '[email protected]', '8683619153', 'Kumar', 800, '2020-03-26', '12:00:00', 1, 1), | ||
(9, 13, 'William', 'Blake', 'Male', '[email protected]', '8683619153', 'Tiwary', 450, '2020-03-26', '14:00:00', 1, 1); | ||
|
||
-- -------------------------------------------------------- | ||
|
||
|
@@ -131,7 +133,8 @@ INSERT INTO `doctb` (`username`, `password`, `email`, `spec`, `docFees`) VALUES | |
('Ganesh', 'ganesh123', '[email protected]', 'Pediatrician', 550), | ||
('Kumar', 'kumar123', '[email protected]', 'Pediatrician', 800), | ||
('Amit', 'amit123', '[email protected]', 'Cardiologist', 1000), | ||
('Abbis', 'abbis123', '[email protected]', 'Neurologist', 1500); | ||
('Abbis', 'abbis123', '[email protected]', 'Neurologist', 1500), | ||
('Tiwary', 'tiwary123', '[email protected]', 'Pediatrician', 450); | ||
|
||
-- -------------------------------------------------------- | ||
|
||
|
@@ -192,7 +195,9 @@ CREATE TABLE `prestb` ( | |
|
||
INSERT INTO `prestb` (`doctor`, `pid`, `ID`, `fname`, `lname`, `appdate`, `apptime`, `disease`, `allergy`, `prescription`) VALUES | ||
('Dinesh', 4, 11, 'Kishan', 'Lal', '2020-03-27', '15:00:00', 'Cough', 'Nothing', 'Just take a teaspoon of Benadryl every night'), | ||
('Ganesh', 2, 8, 'Alia', 'Bhatt', '2020-03-21', '10:00:00', 'Severe Fever', 'Nothing', 'Take bed rest'); | ||
('Ganesh', 2, 8, 'Alia', 'Bhatt', '2020-03-21', '10:00:00', 'Severe Fever', 'Nothing', 'Take bed rest'), | ||
('Kumar', 9, 12, 'William', 'Blake', '2020-03-26', '12:00:00', 'Sever fever', 'nothing', 'Paracetamol -> 1 every morning and night'), | ||
('Tiwary', 9, 13, 'William', 'Blake', '2020-03-26', '14:00:00', 'Cough', 'Skin dryness', 'Intake fruits with more water content'); | ||
|
||
-- | ||
-- Indexes for dumped tables | ||
|
@@ -218,7 +223,7 @@ ALTER TABLE `patreg` | |
-- AUTO_INCREMENT for table `appointmenttb` | ||
-- | ||
ALTER TABLE `appointmenttb` | ||
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; | ||
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; | ||
|
||
-- | ||
-- AUTO_INCREMENT for table `patreg` | ||
|
Oops, something went wrong.