Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../laravel
File: laravel.sql
[0] Fix | Delete
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
[1] Fix | Delete
SET time_zone = "+00:00";
[2] Fix | Delete
[3] Fix | Delete
[4] Fix | Delete
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
[5] Fix | Delete
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
[6] Fix | Delete
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
[7] Fix | Delete
/*!40101 SET NAMES utf8 */;
[8] Fix | Delete
[9] Fix | Delete
--
[10] Fix | Delete
-- Database: `laravel11341`
[11] Fix | Delete
--
[12] Fix | Delete
[13] Fix | Delete
-- --------------------------------------------------------
[14] Fix | Delete
[15] Fix | Delete
--
[16] Fix | Delete
-- Table structure for table `cache`
[17] Fix | Delete
--
[18] Fix | Delete
[19] Fix | Delete
CREATE TABLE `cache` (
[20] Fix | Delete
`key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[21] Fix | Delete
`value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
[22] Fix | Delete
`expiration` int NOT NULL,
[23] Fix | Delete
PRIMARY KEY (`key`)
[24] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
[25] Fix | Delete
[26] Fix | Delete
-- --------------------------------------------------------
[27] Fix | Delete
[28] Fix | Delete
--
[29] Fix | Delete
-- Table structure for table `cache_locks`
[30] Fix | Delete
--
[31] Fix | Delete
[32] Fix | Delete
CREATE TABLE `cache_locks` (
[33] Fix | Delete
`key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[34] Fix | Delete
`owner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[35] Fix | Delete
`expiration` int NOT NULL,
[36] Fix | Delete
PRIMARY KEY (`key`)
[37] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
[38] Fix | Delete
[39] Fix | Delete
-- --------------------------------------------------------
[40] Fix | Delete
[41] Fix | Delete
--
[42] Fix | Delete
-- Table structure for table `failed_jobs`
[43] Fix | Delete
--
[44] Fix | Delete
[45] Fix | Delete
CREATE TABLE `failed_jobs` (
[46] Fix | Delete
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
[47] Fix | Delete
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[48] Fix | Delete
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
[49] Fix | Delete
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
[50] Fix | Delete
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
[51] Fix | Delete
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
[52] Fix | Delete
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
[53] Fix | Delete
PRIMARY KEY (`id`),
[54] Fix | Delete
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
[55] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
[56] Fix | Delete
[57] Fix | Delete
-- --------------------------------------------------------
[58] Fix | Delete
[59] Fix | Delete
--
[60] Fix | Delete
-- Table structure for table `jobs`
[61] Fix | Delete
--
[62] Fix | Delete
[63] Fix | Delete
CREATE TABLE `jobs` (
[64] Fix | Delete
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
[65] Fix | Delete
`queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[66] Fix | Delete
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
[67] Fix | Delete
`attempts` tinyint unsigned NOT NULL,
[68] Fix | Delete
`reserved_at` int unsigned DEFAULT NULL,
[69] Fix | Delete
`available_at` int unsigned NOT NULL,
[70] Fix | Delete
`created_at` int unsigned NOT NULL,
[71] Fix | Delete
PRIMARY KEY (`id`),
[72] Fix | Delete
KEY `jobs_queue_index` (`queue`)
[73] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
[74] Fix | Delete
[75] Fix | Delete
-- --------------------------------------------------------
[76] Fix | Delete
[77] Fix | Delete
--
[78] Fix | Delete
-- Table structure for table `job_batches`
[79] Fix | Delete
--
[80] Fix | Delete
[81] Fix | Delete
CREATE TABLE `job_batches` (
[82] Fix | Delete
`id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[83] Fix | Delete
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[84] Fix | Delete
`total_jobs` int NOT NULL,
[85] Fix | Delete
`pending_jobs` int NOT NULL,
[86] Fix | Delete
`failed_jobs` int NOT NULL,
[87] Fix | Delete
`failed_job_ids` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
[88] Fix | Delete
`options` mediumtext COLLATE utf8mb4_unicode_ci,
[89] Fix | Delete
`cancelled_at` int DEFAULT NULL,
[90] Fix | Delete
`created_at` int NOT NULL,
[91] Fix | Delete
`finished_at` int DEFAULT NULL,
[92] Fix | Delete
PRIMARY KEY (`id`)
[93] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
[94] Fix | Delete
[95] Fix | Delete
-- --------------------------------------------------------
[96] Fix | Delete
[97] Fix | Delete
--
[98] Fix | Delete
-- Table structure for table `migrations`
[99] Fix | Delete
--
[100] Fix | Delete
[101] Fix | Delete
CREATE TABLE `migrations` (
[102] Fix | Delete
`id` int unsigned NOT NULL AUTO_INCREMENT,
[103] Fix | Delete
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[104] Fix | Delete
`batch` int NOT NULL,
[105] Fix | Delete
PRIMARY KEY (`id`)
[106] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ;
[107] Fix | Delete
[108] Fix | Delete
--
[109] Fix | Delete
-- Dumping data for table `migrations`
[110] Fix | Delete
--
[111] Fix | Delete
[112] Fix | Delete
INSERT INTO `migrations` VALUES
[113] Fix | Delete
(1, '0001_01_01_000000_create_users_table', 1),
[114] Fix | Delete
(2, '0001_01_01_000001_create_cache_table', 1),
[115] Fix | Delete
(3, '0001_01_01_000002_create_jobs_table', 1);
[116] Fix | Delete
[117] Fix | Delete
-- --------------------------------------------------------
[118] Fix | Delete
[119] Fix | Delete
--
[120] Fix | Delete
-- Table structure for table `password_reset_tokens`
[121] Fix | Delete
--
[122] Fix | Delete
[123] Fix | Delete
CREATE TABLE `password_reset_tokens` (
[124] Fix | Delete
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[125] Fix | Delete
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[126] Fix | Delete
`created_at` timestamp NULL DEFAULT NULL,
[127] Fix | Delete
PRIMARY KEY (`email`)
[128] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
[129] Fix | Delete
[130] Fix | Delete
-- --------------------------------------------------------
[131] Fix | Delete
[132] Fix | Delete
--
[133] Fix | Delete
-- Table structure for table `sessions`
[134] Fix | Delete
--
[135] Fix | Delete
[136] Fix | Delete
CREATE TABLE `sessions` (
[137] Fix | Delete
`id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[138] Fix | Delete
`user_id` bigint unsigned DEFAULT NULL,
[139] Fix | Delete
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
[140] Fix | Delete
`user_agent` text COLLATE utf8mb4_unicode_ci,
[141] Fix | Delete
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
[142] Fix | Delete
`last_activity` int NOT NULL,
[143] Fix | Delete
PRIMARY KEY (`id`),
[144] Fix | Delete
KEY `sessions_user_id_index` (`user_id`),
[145] Fix | Delete
KEY `sessions_last_activity_index` (`last_activity`)
[146] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
[147] Fix | Delete
[148] Fix | Delete
-- --------------------------------------------------------
[149] Fix | Delete
[150] Fix | Delete
--
[151] Fix | Delete
-- Table structure for table `users`
[152] Fix | Delete
--
[153] Fix | Delete
[154] Fix | Delete
CREATE TABLE `users` (
[155] Fix | Delete
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
[156] Fix | Delete
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[157] Fix | Delete
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[158] Fix | Delete
`email_verified_at` timestamp NULL DEFAULT NULL,
[159] Fix | Delete
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
[160] Fix | Delete
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
[161] Fix | Delete
`created_at` timestamp NULL DEFAULT NULL,
[162] Fix | Delete
`updated_at` timestamp NULL DEFAULT NULL,
[163] Fix | Delete
PRIMARY KEY (`id`),
[164] Fix | Delete
UNIQUE KEY `users_email_unique` (`email`)
[165] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
[166] Fix | Delete
[167] Fix | Delete
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
[168] Fix | Delete
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
[169] Fix | Delete
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
[170] Fix | Delete
[171] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function