· 8 years ago · Jun 01, 2018, 09:14 AM
1-- --------------------------------------------------------
2-- Host: 127.0.0.1
3-- Server version: 5.7.17-log - MySQL Community Server (GPL)
4-- Server OS: Win64
5-- HeidiSQL Version: 9.4.0.5125
6-- --------------------------------------------------------
7
8/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
9/*!40101 SET NAMES utf8 */;
10/*!50503 SET NAMES utf8mb4 */;
11/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
12/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
13
14-- Dumping structure for table grs_only_may.notifications
15CREATE TABLE IF NOT EXISTS `notifications` (
16 `id` bigint(20) NOT NULL AUTO_INCREMENT,
17 `office_id` bigint(20) DEFAULT '0',
18 `employee_record_id` bigint(20) DEFAULT '0',
19 `office_unit_organogram_id` bigint(20) DEFAULT '0',
20 `complaint_id` bigint(20) DEFAULT '0',
21 `complaint_movement_id` bigint(20) DEFAULT '0',
22 `employee_name_eng` varchar(50) DEFAULT NULL,
23 `employee_name_bng` varchar(50) DEFAULT NULL,
24 `text` text NOT NULL,
25 `created_at` datetime DEFAULT NULL,
26 `modified_at` datetime DEFAULT NULL,
27 `created_by` int(11) DEFAULT NULL,
28 `modified_by` int(11) DEFAULT NULL,
29 `status` int(11) DEFAULT NULL,
30 `is_seen` int(11) DEFAULT NULL,
31 `url` varchar(50) DEFAULT NULL,
32 PRIMARY KEY (`id`)
33) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
34
35-- Data exporting was unselected.
36/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
37/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
38/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;