Advertisement
Guest User

Untitled

a guest
Mar 17th, 2015
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.41 KB | None | 0 0
  1. -- --------------------------------------------------------
  2. -- Host:                         localhost
  3. -- Server version:               5.6.16 - MySQL Community Server (GPL)
  4. -- Server OS:                    Win32
  5. -- HeidiSQL Version:             8.3.0.4694
  6. -- --------------------------------------------------------
  7.  
  8. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  9. /*!40101 SET NAMES utf8 */;
  10. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  11. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  12.  
  13. -- Dumping structure for table account.tickets
  14. CREATE TABLE IF NOT EXISTS `tickets` (
  15.   `id` int(100) NOT NULL AUTO_INCREMENT,
  16.   `reason` varchar(50) NOT NULL,
  17.   `content` text NOT NULL,
  18.   `user_id` varchar(10) NOT NULL,
  19.   `status` int(10) DEFAULT NULL,
  20.   `ticket_date` datetime NOT NULL,
  21.   `answer` text,
  22.   `answered_by` varchar(10) DEFAULT NULL,
  23.   `answer_date` datetime DEFAULT NULL,
  24.   PRIMARY KEY (`id`)
  25. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  26.  
  27. -- Dumping data for table account.tickets: 0 rows
  28. DELETE FROM `tickets`;
  29. /*!40000 ALTER TABLE `tickets` DISABLE KEYS */;
  30. /*!40000 ALTER TABLE `tickets` ENABLE KEYS */;
  31. /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
  32. /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
  33. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement