Server IP : 103.119.228.120 / Your IP : 18.117.168.71 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/softaculous/flyspray/ |
Upload File : |
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: `filespray` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]admin_requests` -- CREATE TABLE `[[dbprefix]]admin_requests` ( `request_id` int(5) NOT NULL auto_increment, `project_id` int(5) NOT NULL default '0', `task_id` int(5) NOT NULL default '0', `submitted_by` int(5) NOT NULL default '0', `request_type` int(2) NOT NULL default '0', `reason_given` text, `time_submitted` int(11) NOT NULL default '0', `resolved_by` int(5) NOT NULL default '0', `time_resolved` int(11) NOT NULL default '0', `deny_reason` varchar(255) default NULL, PRIMARY KEY (`request_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]assigned` -- CREATE TABLE `[[dbprefix]]assigned` ( `assigned_id` int(10) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `user_id` int(5) NOT NULL default '0', PRIMARY KEY (`assigned_id`), UNIQUE KEY `[[dbprefix]]task_user` (`task_id`,`user_id`), KEY `[[dbprefix]]task_id_assigned` (`task_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]attachments` -- CREATE TABLE `[[dbprefix]]attachments` ( `attachment_id` int(5) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `comment_id` int(10) NOT NULL default '0', `orig_name` varchar(255) NOT NULL, `file_name` varchar(30) NOT NULL, `file_type` varchar(255) NOT NULL, `file_size` int(20) NOT NULL default '0', `added_by` int(3) NOT NULL default '0', `date_added` int(11) NOT NULL default '0', PRIMARY KEY (`attachment_id`), KEY `[[dbprefix]]task_id_attachments` (`task_id`,`comment_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache` -- CREATE TABLE `[[dbprefix]]cache` ( `id` int(6) NOT NULL auto_increment, `type` varchar(4) NOT NULL, `content` longtext NOT NULL, `topic` int(11) NOT NULL, `last_updated` int(11) NOT NULL default '0', `project_id` int(11) NOT NULL default '0', `max_items` int(11) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `[[dbprefix]]cache_type` (`type`,`topic`,`project_id`,`max_items`), KEY `[[dbprefix]]cache_type_topic` (`type`,`topic`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]comments` -- CREATE TABLE `[[dbprefix]]comments` ( `comment_id` int(10) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `date_added` int(11) NOT NULL default '0', `user_id` int(3) NOT NULL default '0', `comment_text` text, `last_edited_time` int(11) NOT NULL default '0', PRIMARY KEY (`comment_id`), KEY `[[dbprefix]]task_id_comments` (`task_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]dependencies` -- CREATE TABLE `[[dbprefix]]dependencies` ( `depend_id` int(10) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `dep_task_id` int(10) NOT NULL default '0', PRIMARY KEY (`depend_id`), UNIQUE KEY `[[dbprefix]]task_id_deps` (`task_id`,`dep_task_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]groups` -- CREATE TABLE `[[dbprefix]]groups` ( `group_id` int(3) NOT NULL auto_increment, `group_name` varchar(20) NOT NULL, `group_desc` varchar(150) NOT NULL, `project_id` int(3) NOT NULL default '0', `is_admin` int(1) NOT NULL default '0', `manage_project` int(1) NOT NULL default '0', `view_tasks` int(1) NOT NULL default '0', `open_new_tasks` int(1) NOT NULL default '0', `modify_own_tasks` int(1) NOT NULL default '0', `modify_all_tasks` int(1) NOT NULL default '0', `view_comments` int(1) NOT NULL default '0', `add_comments` int(1) NOT NULL default '0', `edit_comments` int(1) NOT NULL default '0', `edit_own_comments` int(1) NOT NULL default '0', `delete_comments` int(1) NOT NULL default '0', `create_attachments` int(1) NOT NULL default '0', `delete_attachments` int(1) NOT NULL default '0', `view_history` int(1) NOT NULL default '0', `close_own_tasks` int(1) NOT NULL default '0', `close_other_tasks` int(1) NOT NULL default '0', `assign_to_self` int(1) NOT NULL default '0', `assign_others_to_self` int(1) NOT NULL default '0', `add_to_assignees` int(1) NOT NULL default '0', `view_reports` int(1) NOT NULL default '0', `add_votes` int(1) NOT NULL default '0', `edit_assignments` int(1) NOT NULL default '0', `show_as_assignees` int(1) NOT NULL default '0', `group_open` int(1) NOT NULL default '0', PRIMARY KEY (`group_id`), UNIQUE KEY `[[dbprefix]]group_name` (`group_name`,`project_id`), KEY `[[dbprefix]]belongs_to_project` (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]groups` -- INSERT INTO `[[dbprefix]]groups` VALUES (1, 'Admin', 'Members have unlimited access to all functionality.', 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1), (2, 'Developers', 'Global Developers for all projects', 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1), (3, 'Reporters', 'Open new tasks / add comments in all projects', 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1), (4, 'Basic', 'Members can login, relying upon Project permissions only', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1), (5, 'Pending', 'Users who are awaiting approval of their accounts.', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (6, 'Project Managers', 'Permission to do anything related to the Default Project.', 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]history` -- CREATE TABLE `[[dbprefix]]history` ( `history_id` int(10) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `user_id` int(3) NOT NULL default '0', `event_date` int(11) NOT NULL default '0', `event_type` int(2) NOT NULL default '0', `field_changed` varchar(50) NOT NULL, `old_value` text, `new_value` text, PRIMARY KEY (`history_id`), KEY `[[dbprefix]]idx_task_id` (`task_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]history` -- INSERT INTO `[[dbprefix]]history` VALUES (1, 1, 1, 1130024797, 1, '', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]list_category` -- CREATE TABLE `[[dbprefix]]list_category` ( `category_id` int(3) NOT NULL auto_increment, `project_id` int(3) NOT NULL default '0', `category_name` varchar(30) NOT NULL, `show_in_list` int(1) NOT NULL default '0', `category_owner` int(3) NOT NULL default '0', `lft` int(10) unsigned NOT NULL default '0', `rgt` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`category_id`), KEY `[[dbprefix]]project_id_cat` (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]list_category` -- INSERT INTO `[[dbprefix]]list_category` VALUES (1, 1, 'Backend / Core', 1, 0, 2, 3), (2, 0, 'root', 0, 0, 1, 2), (3, 1, 'root', 0, 0, 1, 4); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]list_os` -- CREATE TABLE `[[dbprefix]]list_os` ( `os_id` int(3) NOT NULL auto_increment, `project_id` int(3) NOT NULL default '0', `os_name` varchar(40) NOT NULL, `list_position` int(3) NOT NULL default '0', `show_in_list` int(1) NOT NULL default '0', PRIMARY KEY (`os_id`), KEY `[[dbprefix]]project_id_os` (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `[[dbprefix]]list_os` -- INSERT INTO `[[dbprefix]]list_os` VALUES (1, 1, 'All', 1, 1), (2, 1, 'Windows', 2, 1), (3, 1, 'Linux', 3, 1), (4, 1, 'Mac OS', 4, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]list_resolution` -- CREATE TABLE `[[dbprefix]]list_resolution` ( `resolution_id` int(3) NOT NULL auto_increment, `resolution_name` varchar(30) NOT NULL, `list_position` int(3) NOT NULL default '0', `show_in_list` int(1) NOT NULL default '0', `project_id` int(3) NOT NULL default '0', PRIMARY KEY (`resolution_id`), KEY `[[dbprefix]]project_id_res` (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ; -- -- Dumping data for table `[[dbprefix]]list_resolution` -- INSERT INTO `[[dbprefix]]list_resolution` VALUES (1, 'Not a bug', 1, 1, 0), (2, 'Won''t fix', 2, 1, 0), (3, 'Won''t implement', 3, 1, 0), (4, 'Works for me', 4, 1, 0), (5, 'Deferred', 5, 1, 0), (6, 'Duplicate', 6, 1, 0), (7, 'Fixed', 7, 1, 0), (8, 'Implemented', 8, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]list_status` -- CREATE TABLE `[[dbprefix]]list_status` ( `status_id` int(3) NOT NULL auto_increment, `status_name` varchar(40) NOT NULL, `list_position` int(3) NOT NULL default '0', `show_in_list` int(1) NOT NULL default '0', `project_id` int(3) NOT NULL default '0', PRIMARY KEY (`status_id`), KEY `[[dbprefix]]project_id_status` (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]list_status` -- INSERT INTO `[[dbprefix]]list_status` VALUES (1, 'Unconfirmed', 1, 1, 0), (2, 'New', 2, 1, 0), (3, 'Assigned', 3, 1, 0), (4, 'Researching', 4, 1, 0), (5, 'Waiting on Customer', 5, 1, 0), (6, 'Requires testing', 6, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]list_tasktype` -- CREATE TABLE `[[dbprefix]]list_tasktype` ( `tasktype_id` int(3) NOT NULL auto_increment, `tasktype_name` varchar(40) NOT NULL, `list_position` int(3) NOT NULL default '0', `show_in_list` int(1) NOT NULL default '0', `project_id` int(3) NOT NULL default '0', PRIMARY KEY (`tasktype_id`), KEY `[[dbprefix]]project_id_tt` (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]list_tasktype` -- INSERT INTO `[[dbprefix]]list_tasktype` VALUES (1, 'Bug Report', 1, 1, 0), (2, 'Feature Request', 2, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]list_version` -- CREATE TABLE `[[dbprefix]]list_version` ( `version_id` int(3) NOT NULL auto_increment, `project_id` int(3) NOT NULL default '0', `version_name` varchar(40) NOT NULL, `list_position` int(3) NOT NULL default '0', `show_in_list` int(1) NOT NULL default '0', `version_tense` int(1) NOT NULL default '0', PRIMARY KEY (`version_id`), KEY `[[dbprefix]]project_id_version` (`project_id`,`version_tense`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]list_version` -- INSERT INTO `[[dbprefix]]list_version` VALUES (1, 1, 'Development', 1, 1, 2); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]notifications` -- CREATE TABLE `[[dbprefix]]notifications` ( `notify_id` int(10) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `user_id` int(5) NOT NULL default '0', PRIMARY KEY (`notify_id`), UNIQUE KEY `[[dbprefix]]task_id_notifs` (`task_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]notification_messages` -- CREATE TABLE `[[dbprefix]]notification_messages` ( `message_id` int(10) NOT NULL auto_increment, `message_subject` text, `message_body` text, `time_created` int(11) NOT NULL default '0', PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]notification_recipients` -- CREATE TABLE `[[dbprefix]]notification_recipients` ( `recipient_id` int(10) NOT NULL auto_increment, `message_id` int(10) NOT NULL default '0', `notify_method` varchar(1) NOT NULL, `notify_address` varchar(100) NOT NULL, PRIMARY KEY (`recipient_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]prefs` -- CREATE TABLE `[[dbprefix]]prefs` ( `pref_id` int(1) NOT NULL auto_increment, `pref_name` varchar(20) NOT NULL, `pref_value` varchar(250) NOT NULL default '0', PRIMARY KEY (`pref_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=29 ; -- -- Dumping data for table `[[dbprefix]]prefs` -- INSERT INTO `[[dbprefix]]prefs` VALUES (1, 'fs_ver', '0.9.9.7'), (2, 'jabber_server', ''), (3, 'jabber_port', '5222'), (4, 'jabber_username', ''), (5, 'jabber_password', ''), (6, 'anon_group', '4'), (7, 'user_notify', '1'), (8, 'admin_email', '[[admin_email]]'), (9, 'lang_code', 'en'), (10, 'spam_proof', '1'), (11, 'default_project', '1'), (12, 'dateformat', ''), (13, 'dateformat_extended', ''), (14, 'anon_reg', '1'), (15, 'global_theme', 'CleanFS'), (16, 'visible_columns', 'id project category tasktype severity summary status progress'), (17, 'smtp_server', ''), (18, 'smtp_user', ''), (19, 'smtp_pass', ''), (20, 'page_title', 'Flyspray::'), (21, 'notify_registration', '0'), (22, 'jabber_ssl', '0'), (23, 'last_update_check', '0'), (24, 'cache_feeds', '1'), (25, 'lock_for', '5'), (26, 'email_ssl', '0'), (27, 'email_tls', '0'), (28, 'default_timezone', '0'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]projects` -- CREATE TABLE `[[dbprefix]]projects` ( `project_id` int(3) NOT NULL auto_increment, `project_title` varchar(100) NOT NULL, `theme_style` varchar(20) NOT NULL default '0', `default_cat_owner` int(3) NOT NULL default '0', `intro_message` text, `project_is_active` int(1) NOT NULL default '0', `visible_columns` varchar(255) NOT NULL, `others_view` int(1) NOT NULL default '0', `anon_open` int(1) NOT NULL default '0', `notify_email` text, `notify_jabber` text, `notify_reply` text, `notify_types` varchar(100) NOT NULL default '0', `feed_img_url` text, `feed_description` text, `notify_subject` varchar(100) NOT NULL default '', `lang_code` varchar(10) NOT NULL, `comment_closed` int(1) NOT NULL default '0', `auto_assign` int(1) NOT NULL default '0', `last_updated` int(11) NOT NULL default '0', `default_task` text, `default_entry` varchar(8) NOT NULL default 'index', PRIMARY KEY (`project_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]projects` -- INSERT INTO `[[dbprefix]]projects` VALUES (1, 'Default Project', 'CleanFS', 0, 'Welcome to your first Flyspray project! We hope that Flyspray provides you with many hours of increased productivity. If you have any issues, go to http://flyspray.org/support. You can customise this message by clicking the **Manage Project** link in the menu above...', 1, 'id category tasktype severity summary status progress', 1, 0, '', '', NULL, '0', NULL, NULL, '', 'en', 0, 0, 0, NULL, 'index'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]registrations` -- CREATE TABLE `[[dbprefix]]registrations` ( `reg_id` int(10) NOT NULL auto_increment, `reg_time` int(11) NOT NULL default '0', `confirm_code` varchar(20) NOT NULL, `user_name` varchar(32) NOT NULL, `real_name` varchar(100) NOT NULL, `email_address` varchar(100) NOT NULL, `jabber_id` varchar(100) NOT NULL, `notify_type` int(1) NOT NULL default '0', `magic_url` varchar(40) NOT NULL, `time_zone` int(6) NOT NULL default '0', PRIMARY KEY (`reg_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]related` -- CREATE TABLE `[[dbprefix]]related` ( `related_id` int(10) NOT NULL auto_increment, `this_task` int(10) NOT NULL default '0', `related_task` int(10) NOT NULL default '0', `is_duplicate` int(1) NOT NULL default '0', PRIMARY KEY (`related_id`), UNIQUE KEY `[[dbprefix]]this_task` (`this_task`,`related_task`,`is_duplicate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]reminders` -- CREATE TABLE `[[dbprefix]]reminders` ( `reminder_id` int(10) NOT NULL auto_increment, `task_id` int(10) NOT NULL default '0', `to_user_id` int(3) NOT NULL default '0', `from_user_id` int(3) NOT NULL default '0', `start_time` int(11) NOT NULL default '0', `how_often` int(12) NOT NULL default '0', `last_sent` int(11) NOT NULL default '0', `reminder_message` text, PRIMARY KEY (`reminder_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]searches` -- CREATE TABLE `[[dbprefix]]searches` ( `id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL default '0', `name` varchar(50) NOT NULL, `search_string` text, `time` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]tasks` -- CREATE TABLE `[[dbprefix]]tasks` ( `task_id` int(10) NOT NULL auto_increment, `project_id` int(3) NOT NULL default '0', `task_type` int(3) NOT NULL default '0', `date_opened` int(11) NOT NULL default '0', `opened_by` int(3) NOT NULL default '0', `is_closed` int(1) NOT NULL default '0', `date_closed` int(11) NOT NULL default '0', `closed_by` int(3) NOT NULL default '0', `closure_comment` text, `item_summary` varchar(100) NOT NULL, `detailed_desc` text, `item_status` int(3) NOT NULL default '0', `resolution_reason` int(3) NOT NULL default '1', `product_category` int(3) NOT NULL default '0', `product_version` int(3) NOT NULL default '0', `closedby_version` int(3) NOT NULL default '0', `operating_system` int(3) NOT NULL default '0', `task_severity` int(3) NOT NULL default '0', `task_priority` int(3) NOT NULL default '0', `last_edited_by` int(3) NOT NULL default '0', `last_edited_time` int(11) NOT NULL default '0', `percent_complete` int(3) NOT NULL default '0', `mark_private` int(1) NOT NULL default '0', `due_date` int(11) NOT NULL default '0', `anon_email` varchar(100) NOT NULL default '', `task_token` varchar(32) NOT NULL default '0', PRIMARY KEY (`task_id`), KEY `[[dbprefix]]attached_to_project` (`project_id`), KEY `[[dbprefix]]task_severity` (`task_severity`), KEY `[[dbprefix]]task_type` (`task_type`), KEY `[[dbprefix]]product_category` (`product_category`), KEY `[[dbprefix]]item_status` (`item_status`), KEY `[[dbprefix]]is_closed` (`is_closed`), KEY `[[dbprefix]]closedby_version` (`closedby_version`), KEY `[[dbprefix]]due_date` (`due_date`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]tasks` -- INSERT INTO `[[dbprefix]]tasks` VALUES (1, 1, 1, 1130024797, 1, 0, 0, 0, ' ', 'Sample Task', 'This isn''t a real task. You should close it and start opening some real tasks.', 2, 1, 1, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, '', '0'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]users` -- CREATE TABLE `[[dbprefix]]users` ( `user_id` int(3) NOT NULL auto_increment, `user_name` varchar(32) NOT NULL, `user_pass` varchar(40) default NULL, `real_name` varchar(100) NOT NULL, `jabber_id` varchar(100) NOT NULL, `email_address` varchar(100) NOT NULL, `notify_type` int(1) NOT NULL default '0', `notify_own` int(6) NOT NULL default '0', `account_enabled` int(1) NOT NULL default '0', `dateformat` varchar(30) NOT NULL default '', `dateformat_extended` varchar(30) NOT NULL default '', `magic_url` varchar(40) NOT NULL default '', `tasks_perpage` int(3) NOT NULL default '0', `register_date` int(11) NOT NULL default '0', `time_zone` int(6) NOT NULL default '0', `login_attempts` int(11) NOT NULL default '0', `lock_until` int(11) NOT NULL default '0', PRIMARY KEY (`user_id`), UNIQUE KEY `[[dbprefix]]user_name` (`user_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]users` -- INSERT INTO `[[dbprefix]]users` VALUES (1, '[[admin_username]]', '[[admin_pass]]', 'Mr Super User', 'super@example.com', '[[admin_email]]', 0, 1, 1, '', '', '25', 0, 0, 0, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]users_in_groups` -- CREATE TABLE `[[dbprefix]]users_in_groups` ( `record_id` int(5) NOT NULL auto_increment, `user_id` int(5) NOT NULL default '0', `group_id` int(3) NOT NULL default '0', PRIMARY KEY (`record_id`), UNIQUE KEY `[[dbprefix]]group_id_uig` (`group_id`,`user_id`), KEY `[[dbprefix]]user_id_uig` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]users_in_groups` -- INSERT INTO `[[dbprefix]]users_in_groups` VALUES (1, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]votes` -- CREATE TABLE `[[dbprefix]]votes` ( `vote_id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL default '0', `task_id` int(11) NOT NULL default '0', `date_time` int(11) NOT NULL default '0', PRIMARY KEY (`vote_id`), KEY `[[dbprefix]]task_id_votes` (`task_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=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 */;