Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.78 KB | None | 0 0
  1. DROP TABLE IF EXISTS `adminnotification_inbox`; DROP VIEW IF EXISTS `adminnotification_inbox`;
  2. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  3. /*!40101 SET character_set_client = utf8 */;
  4. CREATE TABLE `adminnotification_inbox` (
  5.  `notification_id` int(10) NOT NULL COMMENT 'Notification id',
  6.  `severity` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Problem type',
  7.  `date_added` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Create date',
  8.  `title` varchar(255) NOT NULL COMMENT 'Title',
  9.  `description` text COMMENT 'Description',
  10.  `url` varchar(255) DEFAULT NULL COMMENT 'Url',
  11.  `is_read` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Flag if notification read',
  12.  `is_remove` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Flag if notification might b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement