0byt3m1n1
Path:
/
data
/
24
/
3
/
48
/
18
/
3700996
/
meta
/
4115567
/
mysql.backup
/
[
Home
]
File: acpacp.mysqlv114.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv114 Database: acpacp -- ------------------------------------------------------ -- Server version 5.0.91 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!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' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `alerts` -- DROP TABLE IF EXISTS `alerts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `alerts` ( `id` int(11) NOT NULL auto_increment, `target_user` int(11) NOT NULL, `reference_function` varchar(30) NOT NULL, `reference_object` varchar(30) NOT NULL, `reference_id` int(11) NOT NULL, `msg` text NOT NULL, `type` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `alerts` -- LOCK TABLES `alerts` WRITE; /*!40000 ALTER TABLE `alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `clients` -- DROP TABLE IF EXISTS `clients`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `clients` ( `id` int(11) NOT NULL auto_increment, `group_id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `contact_person` varchar(100) NOT NULL, `contact_email` varchar(100) NOT NULL, `contact_phone` varchar(30) NOT NULL, `address_line_1` varchar(300) NOT NULL, `address_line_2` varchar(300) NOT NULL, `additional_contacts` text NOT NULL, `welcome` tinyint(1) NOT NULL, `created` int(11) NOT NULL, `modified` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `clients` -- LOCK TABLES `clients` WRITE; /*!40000 ALTER TABLE `clients` DISABLE KEYS */; INSERT INTO `clients` VALUES (1,0,'Admin','Admin','admin','','','','',0,0,0); /*!40000 ALTER TABLE `clients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `files` -- DROP TABLE IF EXISTS `files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `files` ( `id` int(11) NOT NULL auto_increment, `client_id` int(11) NOT NULL, `project` int(11) NOT NULL, `phase` int(11) NOT NULL, `posted_by` int(11) NOT NULL, `description` varchar(150) NOT NULL, `file_type` varchar(20) NOT NULL, `size` int(11) NOT NULL, `path` varchar(300) NOT NULL, `created` int(11) NOT NULL, `modified` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `files` -- LOCK TABLES `files` WRITE; /*!40000 ALTER TABLE `files` DISABLE KEYS */; /*!40000 ALTER TABLE `files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `invoice_items` -- DROP TABLE IF EXISTS `invoice_items`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `invoice_items` ( `id` int(11) NOT NULL auto_increment, `invoice_id` int(11) NOT NULL, `item_name` varchar(300) NOT NULL, `description` text NOT NULL, `item_quantity` int(11) NOT NULL, `item_rate` float NOT NULL, `item_type` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `invoice_items` -- LOCK TABLES `invoice_items` WRITE; /*!40000 ALTER TABLE `invoice_items` DISABLE KEYS */; /*!40000 ALTER TABLE `invoice_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `invoices` -- DROP TABLE IF EXISTS `invoices`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `invoices` ( `id` int(11) NOT NULL auto_increment, `client_id` int(11) NOT NULL, `invoice_number` varchar(11) NOT NULL, `date_of_issue` int(11) NOT NULL, `due_date` int(11) NOT NULL, `total` float NOT NULL, `payments` float NOT NULL, `balance` float NOT NULL, `terms` text NOT NULL, `created` int(11) NOT NULL, `modified` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `invoices` -- LOCK TABLES `invoices` WRITE; /*!40000 ALTER TABLE `invoices` DISABLE KEYS */; /*!40000 ALTER TABLE `invoices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messages` -- DROP TABLE IF EXISTS `messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `messages` ( `id` int(11) NOT NULL auto_increment, `reference_object` varchar(20) NOT NULL, `reference_id` int(11) NOT NULL, `client_id` int(11) NOT NULL, `posted_by` int(11) NOT NULL, `message` text NOT NULL, `created` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `messages` -- LOCK TABLES `messages` WRITE; /*!40000 ALTER TABLE `messages` DISABLE KEYS */; /*!40000 ALTER TABLE `messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `payments` ( `id` int(11) NOT NULL auto_increment, `invoice_id` int(11) NOT NULL, `client_id` int(11) NOT NULL, `amount` int(11) NOT NULL, `created` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projects` -- DROP TABLE IF EXISTS `projects`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `projects` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `client_id` int(11) NOT NULL, `duration` int(11) NOT NULL, `phases` varchar(400) NOT NULL, `progress` int(11) NOT NULL, `created` int(11) NOT NULL, `modified` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `projects` -- LOCK TABLES `projects` WRITE; /*!40000 ALTER TABLE `projects` DISABLE KEYS */; /*!40000 ALTER TABLE `projects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sessions` ( `session_id` varchar(40) NOT NULL default '0', `user_id` int(11) NOT NULL, `username` varchar(255) NOT NULL, `ip_address` varchar(16) NOT NULL default '0', `user_agent` varchar(50) NOT NULL, `last_activity` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; INSERT INTO `sessions` VALUES ('53nanhudnlln7uej9c85r5a2l0',1,'admin','41.242.137.55','22093e96d66faf92abe60093ec050d63',1428280864),('gu7387k5den76f7tvdf0kgfo97',1,'admin','41.242.137.55','22093e96d66faf92abe60093ec050d63',1428283012); /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `client_id` int(11) NOT NULL, `password` varchar(255) NOT NULL, `salt` varchar(255) NOT NULL, `tmp_pass` varchar(6) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,1,'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855','',''); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'acpacp' -- DELIMITER ;; DELIMITER ; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2015-10-21 11:46:08