Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.46 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.8.3
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost:3306
  6. -- Generation Time: Dec 10, 2019 at 07:14 AM
  7. -- Server version: 5.7.23
  8. -- PHP Version: 7.1.20
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `hospital_management`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `user_test_report`
  21. --
  22.  
  23. CREATE TABLE `user_test_report` (
  24.   `id` int(11) NOT NULL,
  25.   `report_title` varchar(200) NOT NULL,
  26.   `file_name` varchar(255) NOT NULL,
  27.   `file_destination` varchar(200) NOT NULL,
  28.   `user_id` int(11) NOT NULL,
  29.   `diagonostic_id` int(11) NOT NULL,
  30.   `doctor_id` int(11) NOT NULL,
  31.   `report_date` date NOT NULL
  32. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  33.  
  34. --
  35. -- Dumping data for table `user_test_report`
  36. --
  37.  
  38. INSERT INTO `user_test_report` (`id`, `report_title`, `file_name`, `file_destination`, `user_id`, `diagonostic_id`, `doctor_id`, `report_date`) VALUES
  39. (9, 'asdaasas', 'asdaasas.pdf', '/Applications/MAMP/htdocs/healthcare-admin/uploads/reports/asdaasas.pdf', 11, 1, 0, '2019-12-09');
  40.  
  41. --
  42. -- Indexes for dumped tables
  43. --
  44.  
  45. --
  46. -- Indexes for table `user_test_report`
  47. --
  48. ALTER TABLE `user_test_report`
  49.   ADD PRIMARY KEY (`id`);
  50.  
  51. --
  52. -- AUTO_INCREMENT for dumped tables
  53. --
  54.  
  55. --
  56. -- AUTO_INCREMENT for table `user_test_report`
  57. --
  58. ALTER TABLE `user_test_report`
  59.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement