Advertisement
ikamal7

servepp.sql

Dec 8th, 2020
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.40 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.9.5
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost:8889
  6. -- Generation Time: Dec 08, 2020 at 01:02 PM
  7. -- Server version: 5.7.30
  8. -- PHP Version: 7.4.9
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `serveapp`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `failed_jobs`
  21. --
  22.  
  23. CREATE TABLE `failed_jobs` (
  24. `id` bigint(20) UNSIGNED NOT NULL,
  25. `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  26. `connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
  27. `queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
  28. `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  29. `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  30. `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
  31. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  32.  
  33. -- --------------------------------------------------------
  34.  
  35. --
  36. -- Table structure for table `migrations`
  37. --
  38.  
  39. CREATE TABLE `migrations` (
  40. `id` int(10) UNSIGNED NOT NULL,
  41. `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  42. `batch` int(11) NOT NULL
  43. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  44.  
  45. --
  46. -- Dumping data for table `migrations`
  47. --
  48.  
  49. INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
  50. (1, '2014_10_12_000000_create_users_table', 1),
  51. (2, '2014_10_12_100000_create_password_resets_table', 1),
  52. (3, '2019_08_19_000000_create_failed_jobs_table', 1),
  53. (4, '2014_10_12_200000_add_two_factor_columns_to_users_table', 2),
  54. (5, '2019_12_14_000001_create_personal_access_tokens_table', 2),
  55. (6, '2020_12_07_092654_create_sessions_table', 2);
  56.  
  57. -- --------------------------------------------------------
  58.  
  59. --
  60. -- Table structure for table `password_resets`
  61. --
  62.  
  63. CREATE TABLE `password_resets` (
  64. `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  65. `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  66. `created_at` timestamp NULL DEFAULT NULL
  67. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  68.  
  69. -- --------------------------------------------------------
  70.  
  71. --
  72. -- Table structure for table `personal_access_tokens`
  73. --
  74.  
  75. CREATE TABLE `personal_access_tokens` (
  76. `id` bigint(20) UNSIGNED NOT NULL,
  77. `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  78. `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  79. `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  80. `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  81. `abilities` text COLLATE utf8mb4_unicode_ci,
  82. `last_used_at` timestamp NULL DEFAULT NULL,
  83. `created_at` timestamp NULL DEFAULT NULL,
  84. `updated_at` timestamp NULL DEFAULT NULL
  85. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  86.  
  87. -- --------------------------------------------------------
  88.  
  89. --
  90. -- Table structure for table `sessions`
  91. --
  92.  
  93. CREATE TABLE `sessions` (
  94. `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  95. `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  96. `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  97. `user_agent` text COLLATE utf8mb4_unicode_ci,
  98. `payload` text COLLATE utf8mb4_unicode_ci NOT NULL,
  99. `last_activity` int(11) NOT NULL
  100. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  101.  
  102. --
  103. -- Dumping data for table `sessions`
  104. --
  105.  
  106. INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
  107. ('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);
  108.  
  109. -- --------------------------------------------------------
  110.  
  111. --
  112. -- Table structure for table `users`
  113. --
  114.  
  115. CREATE TABLE `users` (
  116. `id` bigint(20) UNSIGNED NOT NULL,
  117. `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  118. `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  119. `email_verified_at` timestamp NULL DEFAULT NULL,
  120. `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  121. `two_factor_secret` text COLLATE utf8mb4_unicode_ci,
  122. `two_factor_recovery_codes` text COLLATE utf8mb4_unicode_ci,
  123. `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  124. `created_at` timestamp NULL DEFAULT NULL,
  125. `updated_at` timestamp NULL DEFAULT NULL
  126. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  127.  
  128. --
  129. -- Dumping data for table `users`
  130. --
  131.  
  132. INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `two_factor_secret`, `two_factor_recovery_codes`, `remember_token`, `created_at`, `updated_at`) VALUES
  133. (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'),
  134. (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'),
  135. (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'),
  136. (4, 'Shamim', 'shamim@gmail.com', NULL, '$2y$10$kRCdKmHzYKhdrxY1dsbngOjo3BfiK31u041UKU74Vm84RJkSJwwS2', NULL, NULL, NULL, '2020-12-08 06:08:12', '2020-12-08 06:08:12');
  137.  
  138. --
  139. -- Indexes for dumped tables
  140. --
  141.  
  142. --
  143. -- Indexes for table `failed_jobs`
  144. --
  145. ALTER TABLE `failed_jobs`
  146. ADD PRIMARY KEY (`id`),
  147. ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
  148.  
  149. --
  150. -- Indexes for table `migrations`
  151. --
  152. ALTER TABLE `migrations`
  153. ADD PRIMARY KEY (`id`);
  154.  
  155. --
  156. -- Indexes for table `password_resets`
  157. --
  158. ALTER TABLE `password_resets`
  159. ADD KEY `password_resets_email_index` (`email`);
  160.  
  161. --
  162. -- Indexes for table `personal_access_tokens`
  163. --
  164. ALTER TABLE `personal_access_tokens`
  165. ADD PRIMARY KEY (`id`),
  166. ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  167. ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);
  168.  
  169. --
  170. -- Indexes for table `sessions`
  171. --
  172. ALTER TABLE `sessions`
  173. ADD PRIMARY KEY (`id`),
  174. ADD KEY `sessions_user_id_index` (`user_id`),
  175. ADD KEY `sessions_last_activity_index` (`last_activity`);
  176.  
  177. --
  178. -- Indexes for table `users`
  179. --
  180. ALTER TABLE `users`
  181. ADD PRIMARY KEY (`id`),
  182. ADD UNIQUE KEY `users_email_unique` (`email`);
  183.  
  184. --
  185. -- AUTO_INCREMENT for dumped tables
  186. --
  187.  
  188. --
  189. -- AUTO_INCREMENT for table `failed_jobs`
  190. --
  191. ALTER TABLE `failed_jobs`
  192. MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
  193.  
  194. --
  195. -- AUTO_INCREMENT for table `migrations`
  196. --
  197. ALTER TABLE `migrations`
  198. MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
  199.  
  200. --
  201. -- AUTO_INCREMENT for table `personal_access_tokens`
  202. --
  203. ALTER TABLE `personal_access_tokens`
  204. MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
  205.  
  206. --
  207. -- AUTO_INCREMENT for table `users`
  208. --
  209. ALTER TABLE `users`
  210. MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  211.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement