Your IP : 216.73.216.79


Current Path : /var/www/html/ebookingdbkl/backend/modules/api/
Upload File :
Current File : /var/www/html/ebookingdbkl/backend/modules/api/up.sql

CREATE TABLE IF NOT EXISTS `api` (
  `api_id` int(11) NOT NULL AUTO_INCREMENT,
  `api_code` varchar(255) DEFAULT NULL,
  `api_descr` text DEFAULT NULL,
  `api_content` text DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`api_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

insert  into `backend_menu`(`menu_name`,`menu_param`,`menu_class`,`menu_link`,`menu_active_route`,`menu_parent_id`,`menu_status`) values 
('API','','fa fa-code','/api/api/index','',0,1);

insert  into `route`(`name`,`alias`,`type`,`status`) values ('/api/api/index','index','api/api',1);