Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.6.6deb5
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost:3306
  6. -- Generation Time: Aug 20, 2019 at 04:09 AM
  7. -- Server version: 5.7.27-0ubuntu0.18.04.1
  8. -- PHP Version: 7.2.20-2+ubuntu18.04.1+deb.sury.org+1
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `jobayan_db`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `notification`
  21. --
  22.  
  23. CREATE TABLE `notification` (
  24. `notification_id` int(10) UNSIGNED NOT NULL,
  25. `notification_active` int(1) UNSIGNED NOT NULL DEFAULT '1',
  26. `notification_created` datetime NOT NULL,
  27. `notification_updated` datetime NOT NULL,
  28. `notification_title` varchar(255) DEFAULT NULL,
  29. `notification_body` text,
  30. `notification_type` varchar(255) DEFAULT NULL,
  31. `notification_meta` json DEFAULT NULL,
  32. `notification_flag` int(1) UNSIGNED DEFAULT '0',
  33. `notification_seen` int(1) NOT NULL DEFAULT '0',
  34. `notification_read_date` datetime DEFAULT NULL
  35. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  36.  
  37. --
  38. -- Indexes for dumped tables
  39. --
  40.  
  41. --
  42. -- Indexes for table `notification`
  43. --
  44. ALTER TABLE `notification`
  45. ADD PRIMARY KEY (`notification_id`),
  46. ADD KEY `notification_active` (`notification_active`),
  47. ADD KEY `notification_created` (`notification_created`),
  48. ADD KEY `notification_updated` (`notification_updated`),
  49. ADD KEY `notification_title` (`notification_title`),
  50. ADD KEY `notification_type` (`notification_type`),
  51. ADD KEY `notification_flag` (`notification_flag`);
  52.  
  53. --
  54. -- AUTO_INCREMENT for dumped tables
  55. --
  56.  
  57. --
  58. -- AUTO_INCREMENT for table `notification`
  59. --
  60. ALTER TABLE `notification`
  61. MODIFY `notification_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement