EVOLUTION-MANAGER
Edit File: med.sql
-- phpMyAdmin SQL Dump -- version 3.4.5 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 09, 2014 at 08:36 PM -- Server version: 5.5.16 -- PHP Version: 5.3.8 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `med` -- -- -------------------------------------------------------- -- -- Table structure for table `uc_configuration` -- CREATE TABLE IF NOT EXISTS `uc_configuration` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(150) NOT NULL, `value` varchar(150) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; -- -- Dumping data for table `uc_configuration` -- INSERT INTO `uc_configuration` (`id`, `name`, `value`) VALUES (1, 'website_name', 'UserCake'), (2, 'website_url', 'localhost/base/'), (3, 'email', 'acmeous@gmail.com'), (4, 'activation', 'false'), (5, 'resend_activation_threshold', '7'), (6, 'language', 'models/languages/en.php'), (7, 'template', 'models/site-templates/default.css'); -- -------------------------------------------------------- -- -- Table structure for table `uc_pages` -- CREATE TABLE IF NOT EXISTS `uc_pages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `page` varchar(150) NOT NULL, `private` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ; -- -- Dumping data for table `uc_pages` -- INSERT INTO `uc_pages` (`id`, `page`, `private`) VALUES (1, 'account.php', 1), (2, 'activate-account.php', 0), (3, 'admin_configuration.php', 1), (4, 'admin_page.php', 1), (5, 'admin_pages.php', 1), (6, 'admin_permission.php', 1), (7, 'admin_permissions.php', 1), (8, 'admin_user.php', 1), (9, 'admin_users.php', 1), (10, 'forgot-password.php', 0), (11, 'index.php', 0), (12, 'left-nav.php', 0), (13, 'login.php', 0), (14, 'logout.php', 1), (15, 'register.php', 0), (16, 'resend-activation.php', 0), (17, 'user_settings.php', 1), (18, 'about.php', 1), (19, 'contact.php', 0), (20, 'footer.php', 0), (21, 'global_nav.php', 0), (22, 'header.php', 0), (23, 'how-it-works.php', 0), (24, 'admin.php', 1); -- -------------------------------------------------------- -- -- Table structure for table `uc_permissions` -- CREATE TABLE IF NOT EXISTS `uc_permissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(150) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `uc_permissions` -- INSERT INTO `uc_permissions` (`id`, `name`) VALUES (1, 'New Member'), (2, 'Administrator'); -- -------------------------------------------------------- -- -- Table structure for table `uc_permission_page_matches` -- CREATE TABLE IF NOT EXISTS `uc_permission_page_matches` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permission_id` int(11) NOT NULL, `page_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=27 ; -- -- Dumping data for table `uc_permission_page_matches` -- INSERT INTO `uc_permission_page_matches` (`id`, `permission_id`, `page_id`) VALUES (1, 1, 1), (2, 1, 14), (3, 1, 17), (4, 2, 1), (5, 2, 3), (6, 2, 4), (7, 2, 5), (8, 2, 6), (9, 2, 7), (10, 2, 8), (11, 2, 9), (12, 2, 14), (13, 2, 17), (24, 1, 18), (25, 2, 18), (26, 2, 24); -- -------------------------------------------------------- -- -- Table structure for table `uc_users` -- CREATE TABLE IF NOT EXISTS `uc_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_name` varchar(50) NOT NULL, `display_name` varchar(50) NOT NULL, `password` varchar(225) NOT NULL, `email` varchar(150) NOT NULL, `phone` varchar(15) NOT NULL, `activation_token` varchar(225) NOT NULL, `last_activation_request` int(11) NOT NULL, `lost_password_request` tinyint(1) NOT NULL, `active` tinyint(1) NOT NULL, `title` varchar(150) NOT NULL, `sign_up_stamp` int(11) NOT NULL, `last_sign_in_stamp` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `uc_users` -- INSERT INTO `uc_users` (`id`, `user_name`, `display_name`, `password`, `email`, `phone`, `activation_token`, `last_activation_request`, `lost_password_request`, `active`, `title`, `sign_up_stamp`, `last_sign_in_stamp`) VALUES (1, 'admin', 'Admin', 'd033e22ae348aeb5660fc2140a312084b0f8c69703c52608b41049f25925711d4', 'acmeous@gmail.com', '', '35c4a1910b21e94399ae1dc64fad2534', 1373724135, 0, 1, 'Site Admin', 1373724135, 1390677882), (2, 'subha', 'Subhashis', '1f22be26775c890b8ddf4d71c283e26c95d23b10e429379703efda8590b52b592', 'ablezious@gmail.com', '', 'f212072cefeb985d5b67fab58ff5a375', 1373748500, 0, 1, 'New Member', 1373748500, 1373749204), (3, 'subsub', 'SubSub', '96f6add18ab04e5b8f38a199eb1e7dd7db1fda223eb6ba766f16ffbf31d3cf222', 'sub@sub.co', '+918147866130', '9ed64e2913f669e16b3fcc0a8fb9ffd5', 1390770470, 0, 1, 'New Member', 1390770470, 1390770480); -- -------------------------------------------------------- -- -- Table structure for table `uc_user_permission_matches` -- CREATE TABLE IF NOT EXISTS `uc_user_permission_matches` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `permission_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; -- -- Dumping data for table `uc_user_permission_matches` -- INSERT INTO `uc_user_permission_matches` (`id`, `user_id`, `permission_id`) VALUES (2, 1, 2), (3, 2, 1), (4, 0, 1), (5, 3, 1); /*!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 */;