Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- phpMyAdmin SQL Dump
- -- version 4.9.5
- -- https://www.phpmyadmin.net/
- --
- -- Host: localhost:8889
- -- Generation Time: Dec 08, 2020 at 01:02 PM
- -- Server version: 5.7.30
- -- PHP Version: 7.4.9
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
- --
- -- Database: `serveapp`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `failed_jobs`
- --
- CREATE TABLE `failed_jobs` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
- `queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
- `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- -- --------------------------------------------------------
- --
- -- Table structure for table `migrations`
- --
- CREATE TABLE `migrations` (
- `id` int(10) UNSIGNED NOT NULL,
- `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `batch` int(11) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- --
- -- Dumping data for table `migrations`
- --
- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
- (1, '2014_10_12_000000_create_users_table', 1),
- (2, '2014_10_12_100000_create_password_resets_table', 1),
- (3, '2019_08_19_000000_create_failed_jobs_table', 1),
- (4, '2014_10_12_200000_add_two_factor_columns_to_users_table', 2),
- (5, '2019_12_14_000001_create_personal_access_tokens_table', 2),
- (6, '2020_12_07_092654_create_sessions_table', 2);
- -- --------------------------------------------------------
- --
- -- Table structure for table `password_resets`
- --
- CREATE TABLE `password_resets` (
- `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `created_at` timestamp NULL DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- -- --------------------------------------------------------
- --
- -- Table structure for table `personal_access_tokens`
- --
- CREATE TABLE `personal_access_tokens` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `tokenable_id` bigint(20) UNSIGNED NOT NULL,
- `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
- `abilities` text COLLATE utf8mb4_unicode_ci,
- `last_used_at` timestamp NULL DEFAULT NULL,
- `created_at` timestamp NULL DEFAULT NULL,
- `updated_at` timestamp NULL DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- -- --------------------------------------------------------
- --
- -- Table structure for table `sessions`
- --
- CREATE TABLE `sessions` (
- `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `user_id` bigint(20) UNSIGNED DEFAULT NULL,
- `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `user_agent` text COLLATE utf8mb4_unicode_ci,
- `payload` text COLLATE utf8mb4_unicode_ci NOT NULL,
- `last_activity` int(11) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- --
- -- Dumping data for table `sessions`
- --
- INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
- ('hhgTEJTpTmJSUijAo5kmf614gdZb2qbSZF15lmC6', 1, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', 'YTo2OntzOjY6Il90b2tlbiI7czo0MDoiQWQ1bXBsNzB1SWM4bGk2Z0x3c3k1WUZWdUxuQVhIT21LVVRTcEk1WCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6MzoidXJsIjthOjA6e31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO3M6MTc6InBhc3N3b3JkX2hhc2hfd2ViIjtzOjYwOiIkMnkkMTAkbjJSRXlESDVmZDhrbU9CYkptZHlpZS9ZLi9HQjhXWUJ4RVZyTDhSVzNnWS5UWUdJa1FHNzIiO30=', 1607429307);
- -- --------------------------------------------------------
- --
- -- Table structure for table `users`
- --
- CREATE TABLE `users` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `email_verified_at` timestamp NULL DEFAULT NULL,
- `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `two_factor_secret` text COLLATE utf8mb4_unicode_ci,
- `two_factor_recovery_codes` text COLLATE utf8mb4_unicode_ci,
- `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `created_at` timestamp NULL DEFAULT NULL,
- `updated_at` timestamp NULL DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- --
- -- Dumping data for table `users`
- --
- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `two_factor_secret`, `two_factor_recovery_codes`, `remember_token`, `created_at`, `updated_at`) VALUES
- (1, 'Kamal Hosen', 'kamalhosen8920@gmail.com', NULL, '$2y$10$n2REyDH5fd8kmOBbJmdyie/Y./GB8WYBxEVrL8RW3gY.TYGIkQG72', NULL, NULL, NULL, '2020-12-07 02:52:44', '2020-12-07 02:52:44'),
- (2, 'Kanak Ferdous', 'kanak@gmail.com', NULL, '$2y$10$JfMB/9XO0B7lX0uhmoatoeoBVRKracZQodqmbVz0v0ZytnI2P7gA2', NULL, NULL, NULL, '2020-12-08 05:58:25', '2020-12-08 05:58:25'),
- (3, 'Ibrahim Abdullah', 'ibrahim@gmail.com', NULL, '$2y$10$rOyfNOxnsKm9ZAvb56CAt.Rf3TQjtQcnAG6/lV5s9U7OBSD/4a4L6', NULL, NULL, NULL, '2020-12-08 06:07:30', '2020-12-08 06:07:30'),
- (4, 'Shamim', 'shamim@gmail.com', NULL, '$2y$10$kRCdKmHzYKhdrxY1dsbngOjo3BfiK31u041UKU74Vm84RJkSJwwS2', NULL, NULL, NULL, '2020-12-08 06:08:12', '2020-12-08 06:08:12');
- --
- -- Indexes for dumped tables
- --
- --
- -- Indexes for table `failed_jobs`
- --
- ALTER TABLE `failed_jobs`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
- --
- -- Indexes for table `migrations`
- --
- ALTER TABLE `migrations`
- ADD PRIMARY KEY (`id`);
- --
- -- Indexes for table `password_resets`
- --
- ALTER TABLE `password_resets`
- ADD KEY `password_resets_email_index` (`email`);
- --
- -- Indexes for table `personal_access_tokens`
- --
- ALTER TABLE `personal_access_tokens`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
- ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);
- --
- -- Indexes for table `sessions`
- --
- ALTER TABLE `sessions`
- ADD PRIMARY KEY (`id`),
- ADD KEY `sessions_user_id_index` (`user_id`),
- ADD KEY `sessions_last_activity_index` (`last_activity`);
- --
- -- Indexes for table `users`
- --
- ALTER TABLE `users`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `users_email_unique` (`email`);
- --
- -- AUTO_INCREMENT for dumped tables
- --
- --
- -- AUTO_INCREMENT for table `failed_jobs`
- --
- ALTER TABLE `failed_jobs`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `migrations`
- --
- ALTER TABLE `migrations`
- MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
- --
- -- AUTO_INCREMENT for table `personal_access_tokens`
- --
- ALTER TABLE `personal_access_tokens`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `users`
- --
- ALTER TABLE `users`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement