✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.77
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /var/softaculous/bugs//bugs.sql
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: `bugs191f`
--


-- --------------------------------------------------------

--
-- Table structure for table `activity`
--

CREATE TABLE `activity` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `description` varchar(255) DEFAULT '',
  `DE` varchar(255) NOT NULL DEFAULT '',
  `EN` varchar(255) NOT NULL DEFAULT '',
  `ES` varchar(255) NOT NULL DEFAULT '',
  `FR` varchar(255) NOT NULL DEFAULT '',
  `IT` varchar(255) NOT NULL DEFAULT '',
  `RU` varchar(255) NOT NULL DEFAULT '',
  `ZH_CN` varchar(255) NOT NULL DEFAULT '',
  `ZH_TW` varchar(255) NOT NULL DEFAULT '',
  `activity` varchar(255) NOT NULL DEFAULT '',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ;

--
-- Dumping data for table `activity`
--

INSERT INTO `activity` VALUES
(1, 'Opened a new issue', '', 'Opened a new issue', '', 'Nouveau billet créé', '', '', '', '', 'create-issue', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(2, 'Commented on a issue', '', 'Commented on a issue', '', 'Nouveau commentaire sur un billet', '', '', '', '', 'comment', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(3, 'Closed an issue', '', 'Closed an issue', '', 'Billet fermé', '', '', '', '', 'close-issue', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(4, 'Reopened an issue', '', 'Reopened an issue', '', 'Billet rouvert', '', '', '', '', 'reopen-issue', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(5, 'Reassigned an issue', '', 'Reassigned an issue', '', 'Changement de responsable du billet', '', '', '', '', 'reassign-issue', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(6, 'Updated issue tags', '', 'Updated issue tags', '', 'Mise à jour des étiquettes', '', '', '', '', 'update-issue-tags', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(7, 'Attached a file to issue', '', 'Attached a file to issue', '', 'Fichier joint au billet', '', '', '', '', 'attached-file', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(8, 'Move an issue from project A to project B', '', 'Move an issue from project A to project B', '', 'Déplacement d`un billet du projet A vers le projet B', '', '', '', '', 'ChangeIssue-project', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(9, 'User starts or stop following issue or project', '', 'User starts or stop following issue or project', '', 'Un usager a commencé ou cessé de suivre le billet', '', '', '', '', 'Follow', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(10, 'Updated an issue', '', 'Updated an issue', '', 'Mise à jour d`un billet', '', '', '', '', 'IssueEdit', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(11, 'Deleted a comment', '', 'Deleted a comment', '', 'Commentaire supprimé', '', '', '', '', 'delete_comment', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(12, 'Edited a comment', '', 'Edited a comment', '', 'Commentaire modifié', '', '', '', '', 'edit_comment', '2022-08-01 00:00:00', '2022-08-01 00:00:00'),
(13, 'Elapsed time worked on an issue', '', 'Elapsed time worked on an issue', '', 'Temps de travail d`un ouvrier', '', '', '', '', 'issue_chrono', '2022-08-01 00:00:00', '2022-08-01 00:00:00');

-- --------------------------------------------------------

--
-- Table structure for table `following`
--

CREATE TABLE `following` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `project_id` int(11) NOT NULL,
  `issue_id` int(11) NOT NULL,
  `project` tinyint(2) NOT NULL DEFAULT '0',
  `attached` tinyint(2) NOT NULL DEFAULT '1',
  `tags` tinyint(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `permissions`
--

CREATE TABLE `permissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `permission` varchar(255) DEFAULT NULL,
  `description` text,
  `auto_has` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;

--
-- Dumping data for table `permissions`
--

INSERT INTO `permissions` VALUES
(1, 'issue-view', 'View issues in project assigned to', NULL),
(2, 'issue-create', 'Create issues in projects assigned to', '4'),
(3, 'issue-comment', 'Comment in issues in projects assigned to', '1'),
(4, 'issue-modify', 'Modify issues in projects assigned to', '3'),
(11, 'project-all', 'View, modify all projects and issues', '9'),
(6, 'administration', 'Administration tools, such as user management and application settings.', '11'),
(9, 'project-create', 'Create a new project', '5,10'),
(10, 'project-modify', 'Modify a project assigned to', '2,7'),
(5, 'reports-create', 'Can produce reports', '7'),
(7, 'reports-view', 'Can view already done reports', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `projects`
--

CREATE TABLE `projects` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `status` tinyint(2) DEFAULT '1',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `default_assignee` bigint(20) DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `projects_issues`
--

CREATE TABLE `projects_issues` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `created_by` bigint(20) NOT NULL DEFAULT '1',
  `closed_by` bigint(20) DEFAULT NULL,
  `updated_by` bigint(20) DEFAULT NULL,
  `assigned_to` bigint(20) DEFAULT NULL,
  `project_id` bigint(20) DEFAULT NULL,
  `status` tinyint(2) DEFAULT '1',
  `weight` bigint(20) NOT NULL DEFAULT '1',
  `title` varchar(255) DEFAULT NULL,
  `body` text,
  `created_at` datetime DEFAULT NULL,
  `start_at` datetime DEFAULT NULL,
  `duration` smallint(3) NOT NULL DEFAULT '30',
  `temps_plan` smallint(4) DEFAULT '30',
  `temps_fact` int(11) DEFAULT '0',
  `temps_paye` int(11) DEFAULT '0',
  `updated_at` datetime DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `projects_issues_attachments`
--

CREATE TABLE `projects_issues_attachments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `issue_id` bigint(20) DEFAULT NULL,
  `comment_id` bigint(20) DEFAULT '0',
  `uploaded_by` bigint(20) DEFAULT NULL,
  `filesize` bigint(20) DEFAULT NULL,
  `filename` varchar(250) DEFAULT NULL,
  `fileextension` varchar(255) DEFAULT NULL,
  `upload_token` varchar(100) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `projects_issues_comments`
--

CREATE TABLE `projects_issues_comments` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `created_by` bigint(20) DEFAULT '0',
  `project_id` bigint(20) DEFAULT NULL,
  `issue_id` bigint(20) DEFAULT '0',
  `comment` text,
  `temps_fait` smallint(4) DEFAULT '1',
  `temps_fait_deb` datetime DEFAULT NULL,
  `temps_fait_fin` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `projects_issues_tags`
--

CREATE TABLE `projects_issues_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `issue_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `issue_tag` (`issue_id`,`tag_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `projects_links`
--

CREATE TABLE `projects_links` (
  `id_link` int(11) NOT NULL AUTO_INCREMENT,
  `id_project` int(11) NOT NULL DEFAULT '1',
  `category` enum('dev','git','prod') NOT NULL DEFAULT 'dev',
  `link` varchar(100) NOT NULL,
  `created` date NOT NULL,
  `desactivated` date DEFAULT NULL,
  PRIMARY KEY (`id_link`),
  KEY `id_project_category_desactivated_created` (`id_project`,`category`,`desactivated`,`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `projects_users`
--

CREATE TABLE `projects_users` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT '0',
  `project_id` bigint(20) DEFAULT '0',
  `role_id` bigint(20) DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `roles`
--

CREATE TABLE `roles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `role` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `roles`
--

INSERT INTO `roles` VALUES
(1, 'Observateur', 'user', 'Les tickets qui lui sont assignés ne sont disponibles qu''en lecture.'),
(2, 'Développeur', 'developer', 'Peut modifier les tickets qui lui sont assignés'),
(3, 'Gestionnaire', 'manager', 'Peut modifier les tickets de tous les projets et les projets.'),
(4, 'Admin', 'administrator', 'Peut modifier les tickets et les projets. Peut aussi modifier le comportement global de l''outil Bugs');

-- --------------------------------------------------------

--
-- Table structure for table `roles_permissions`
--

CREATE TABLE `roles_permissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` bigint(11) DEFAULT NULL,
  `permission_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=21 ;

--
-- Dumping data for table `roles_permissions`
--

INSERT INTO `roles_permissions` VALUES
(1, 1, 1),
(2, 1, 2),
(3, 1, 3),
(4, 2, 1),
(5, 2, 2),
(6, 2, 3),
(7, 2, 4),
(8, 3, 11),
(9, 3, 1),
(10, 3, 2),
(11, 3, 3),
(12, 3, 4),
(13, 4, 1),
(14, 4, 2),
(15, 4, 3),
(16, 4, 6),
(17, 4, 9),
(18, 4, 10),
(19, 4, 11),
(20, 4, 4);

-- --------------------------------------------------------

--
-- Table structure for table `sessions`
--

CREATE TABLE `sessions` (
  `id` varchar(40) NOT NULL,
  `last_activity` int(10) NOT NULL,
  `data` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `sessions`
--

-- --------------------------------------------------------

--
-- Table structure for table `settings`
--

CREATE TABLE `settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `key` varchar(255) DEFAULT NULL,
  `value` text,
  `name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `tags`
--

CREATE TABLE `tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tag` varchar(255) NOT NULL,
  `DE` varchar(255) NOT NULL DEFAULT '',
  `EN` varchar(255) NOT NULL,
  `ES` varchar(255) NOT NULL,
  `FR` varchar(255) NOT NULL,
  `IT` varchar(255) NOT NULL,
  `RU` varchar(255) NOT NULL,
  `ZH_CN` varchar(255) NOT NULL,
  `ZH_TW` varchar(255) NOT NULL,
  `bgcolor` varchar(50) NOT NULL DEFAULT '#330033',
  `ftcolor` varchar(50) NOT NULL DEFAULT '#FFFFFF',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tags_tag_unique` (`tag`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;

--
-- Dumping data for table `tags`
--

INSERT INTO `tags` VALUES
(1, 'status:open', '', 'status:open', 'Estado: Aberto', 'État:ouvert', '', '', '', '', '#c43c35', '#FFFFFF', '2013-11-30 11:23:01', '2013-11-30 11:23:01'),
(2, 'status:closed', '', 'status:closed', 'Estado: Cerrado', 'État:fermé', '', '', '', '', '#46A546', '#FFFFFF', '2013-11-30 11:23:01', '2013-11-30 11:23:01'),
(3, 'type:feature', '', 'type:feature', 'Tipo: desarollo', 'Type: développement', '', '', '', '', '#62cffc', '#FFFFFF', '2013-11-30 11:23:01', '2013-11-30 11:23:01'),
(4, 'type:bug', '', 'type:bug', 'Tipo: debug', 'Type: débogage', '', '', '', '', '#f89406', '#FFFFFF', '2013-11-30 11:23:01', '2013-11-30 11:23:01'),
(6, 'resolution:won`t fix', '', 'resolution:won`t fix', 'Deicsion: impossible', 'Verdict: impossible :(', '', '', '', '', '#812323', '#FFFFFF', '2013-11-30 11:23:01', '2013-11-30 11:23:01'),
(7, 'resolution:fixed', '', 'resolution:fixed', 'Decision: Solucionado', 'Verdict: Résolu ! :)', '', '', '', '', '#048383', '#FFFFFF', '2013-11-30 11:23:01', '2013-11-30 11:23:01'),
(8, 'status:testing', '', 'status:testing', 'Estado: haciendo tests', 'État: nous testons', '', '', '', '', '#FCC307', '#FFFFFF', '2013-11-30 11:23:01', '2016-11-30 23:11:01'),
(9, 'status:inProgress', '', 'status:inProgress', 'Estado: progressamos', 'État: Progressons', '', '', '', '', '#FF6600', '#FFFFFF', '2016-11-10 23:12:01', '2016-11-10 23:12:01');

-- --------------------------------------------------------

--
-- Table structure for table `update_history`
--

CREATE TABLE `update_history` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `Footprint` varchar(25) DEFAULT NULL,
  `Description` varchar(100) DEFAULT NULL,
  `DteRelease` date DEFAULT NULL,
  `DteInstall` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=24 ;

--
-- Dumping data for table `update_history`
--

INSERT INTO `update_history` VALUES
(1, '-------------------------', 'Version 1.6.0', '2017-05-01', NULL),
(2, 'Database update via admin', 'update_v1-1_1.sql', '2017-05-10', NULL),
(3, 'Database update via admin', 'update_v1-2_9.sql', '2018-06-01', NULL),
(4, 'Database update via admin', 'update_v1-3_1.sql', '2018-07-04', NULL),
(5, 'Database update via admin', 'update_v1-3_2.sql', '2018-07-05', NULL),
(6, 'Database update via login', 'update_v1-3_3.sql', '2018-09-18', NULL),
(7, 'Database update via admin', 'update_v1-8_3a.sql', '2018-10-10', NULL),
(8, 'Database update via admin', 'update_v1-8_4a.sql', '2019-02-14', NULL),
(9, 'Database update via admin', 'update_v1-8_4b.sql', '2019-05-08', NULL),
(10, 'Database update via admin', 'update_v1-8_4d.sql', '2019-07-08', NULL),
(11, 'Database update via admin', 'update_v1-8_5af.sql', '2020-04-01', NULL),
(12, 'Database update via admin', 'update_v1-8_5t.sql', '2020-05-30', NULL),
(13, 'Database update via admin', 'update_v1-8_6e.sql', '2020-08-11', NULL),
(14, 'Database update via admin', 'update_v1-8_7a.sql', '2020-10-12', NULL),
(15, 'Database update via admin', 'update_v1-8_7ag.sql', '2021-04-03', NULL),
(16, 'Database update via admin', 'update_v1-8_7b.sql', '2021-05-04', NULL),
(17, 'Database update via admin', 'update_v1-8_7c.sql', '2021-06-24', NULL),
(18, 'Database update via admin', 'update_v1-8_7m.sql', '2021-07-17', NULL),
(19, 'Database update via admin', 'update_v1-8_7p.sql', '2021-07-20', NULL),
(20, 'Database update via admin', 'update_v1-8_7r.sql', '2021-09-01', NULL),
(21, 'Database update via admin', 'update_v1-8_7s.sql', '2021-10-01', NULL),
(22, 'Database update via admin', 'update_v1-8_7u.sql', '2021-12-31', NULL),
(23, 'First install', 'Install DB through from mysql_structure.php file', '2013-01-01', '[[date]]');

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` bigint(20) unsigned NOT NULL DEFAULT '1',
  `email` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `firstname` varchar(255) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `language` varchar(5) DEFAULT 'en',
  `preferences` text,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `users`
--

INSERT INTO `users` VALUES
(1, 4, '[[admin_email]]', '[[admin_pass]]', '[[admin_fname]]', '[[admin_lname]]', 'en', NULL, '[[regtime]]', NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `users_activity`
--

CREATE TABLE `users_activity` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `item_id` bigint(20) DEFAULT NULL,
  `action_id` bigint(20) DEFAULT NULL,
  `type_id` int(11) DEFAULT NULL,
  `data` text,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `users_dispo`
--

CREATE TABLE `users_dispo` (
  `id_dispo` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `id_project` int(11) NOT NULL DEFAULT '1',
  `id_issue` int(11) NOT NULL DEFAULT '1',
  `id_user` int(11) NOT NULL DEFAULT '1',
  `LaDate` datetime NOT NULL,
  `PartJour` int(11) NOT NULL DEFAULT '0',
  `Par` int(11) NOT NULL DEFAULT '0',
  `Accepte` varchar(25) NOT NULL,
  `AccepteDte` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `Ajour` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id_dispo`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `users_todos`
--

CREATE TABLE `users_todos` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `issue_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `status` tinyint(2) DEFAULT '1',
  `weight` bigint(20) DEFAULT '1',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`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 */;

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
15 Sep 2026 6.36 PM
root / root
0755
images
--
3 Jul 2026 6.36 PM
root / root
0755
php53
--
3 Jul 2026 6.36 PM
root / root
0755
php56
--
3 Jul 2026 6.36 PM
root / root
0755
php71
--
3 Jul 2026 6.36 PM
root / root
0755
php81
--
3 Jul 2026 6.36 PM
root / root
0755
php82
--
3 Jul 2026 6.36 PM
root / root
0755
bugs.sql
18.303 KB
3 Jul 2026 6.36 PM
root / root
0755
bugs.zip
7.23 MB
3 Jul 2026 6.36 PM
root / root
0755
clone.php
3.952 KB
3 Jul 2026 7.01 AM
root / root
0644
config.app.php
7.211 KB
13 Sep 2022 5.26 AM
root / root
0644
edit.php
4.198 KB
3 Jul 2026 7.01 AM
root / root
0644
edit.xml
0.437 KB
23 Dec 2021 6.54 AM
root / root
0644
fileindex.php
0.192 KB
23 Dec 2021 6.54 AM
root / root
0644
import.php
3.125 KB
3 Jul 2026 7.01 AM
root / root
0644
info.xml
2.516 KB
3 Jul 2026 6.50 AM
root / root
0644
install.js
0.902 KB
23 Dec 2021 6.54 AM
root / root
0644
install.php
4.891 KB
3 Jul 2026 7.01 AM
root / root
0644
install.xml
0.845 KB
23 Dec 2021 6.54 AM
root / root
0644
md5
6.828 KB
3 Jul 2026 7.01 AM
root / root
0644
notes.txt
0.376 KB
23 Dec 2021 6.54 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF