| Current Path : /var/www/html/learn/backend/modules/installer/migrations/ |
| Current File : /var/www/html/learn/backend/modules/installer/migrations/support_helpdesk.sql |
-- -------------------------------------------------------- -- Host: 127.0.0.1 -- Server version: 5.7.21 - MySQL Community Server (GPL) -- Server OS: Win64 -- HeidiSQL Version: 11.0.0.5919 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- Dumping structure for table selfinstaller.support_helpdesk CREATE TABLE IF NOT EXISTS `support_helpdesk` ( `support_helpdesk_id` int(11) NOT NULL AUTO_INCREMENT, `support_helpdesk_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_role` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_section` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_subsection` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_createdat` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `support_helpdesk_createdby` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`support_helpdesk_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Dumping data for table selfinstaller.support_helpdesk: ~0 rows (approximately) /*!40000 ALTER TABLE `support_helpdesk` DISABLE KEYS */; INSERT IGNORE INTO `support_helpdesk` (`support_helpdesk_id`, `support_helpdesk_title`, `support_helpdesk_description`, `support_helpdesk_name`, `support_helpdesk_role`, `support_helpdesk_section`, `support_helpdesk_subsection`, `support_helpdesk_phone`, `support_helpdesk_email`, `support_helpdesk_createdat`, `support_helpdesk_createdby`) VALUES (3, 'test', 'test', 'Super admin', NULL, NULL, NULL, '01151551', 'test123', '2021-03-08 15:34:32', '3'); /*!40000 ALTER TABLE `support_helpdesk` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;