-- phpMyAdmin SQL Dump -- version 3.2.0.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jan 24, 2013 at 10:10 PM -- Server version: 5.1.37 -- PHP Version: 5.2.11 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `survey_200` -- -- -------------------------------------------------------- -- -- Table structure for table `lime_users` -- DROP TABLE IF EXISTS `lime_users`; CREATE TABLE `lime_users` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `users_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `password` blob NOT NULL, `full_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `parent_id` int(11) NOT NULL, `lang` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(320) COLLATE utf8_unicode_ci DEFAULT NULL, `create_survey` int(11) NOT NULL DEFAULT '0', `create_user` int(11) NOT NULL DEFAULT '0', `participant_panel` int(11) NOT NULL DEFAULT '0', `delete_user` int(11) NOT NULL DEFAULT '0', `superadmin` int(11) NOT NULL DEFAULT '0', `configurator` int(11) NOT NULL DEFAULT '0', `manage_template` int(11) NOT NULL DEFAULT '0', `manage_label` int(11) NOT NULL DEFAULT '0', `htmleditormode` varchar(7) COLLATE utf8_unicode_ci DEFAULT 'default', `templateeditormode` varchar(7) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'default', `questionselectormode` varchar(7) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'default', `one_time_pw` blob, `dateformat` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`uid`), UNIQUE KEY `users_name` (`users_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `lime_users` -- INSERT INTO `lime_users` VALUES(1, 'admin', 0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438, 'Administrator', 0, 'en', 'your-email@example.net', 1, 1, 1, 1, 1, 1, 1, 1, 'default', 'default', 'default', NULL, 1);