Advertisement
ikamal7

serveapp

Dec 3rd, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 3.51 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 03, 2020 at 07:09 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.  
  54. -- --------------------------------------------------------
  55.  
  56. --
  57. -- Table structure for table `password_resets`
  58. --
  59.  
  60. CREATE TABLE `password_resets` (
  61.   `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  62.   `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  63.   `created_at` timestamp NULL DEFAULT NULL
  64. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  65.  
  66. -- --------------------------------------------------------
  67.  
  68. --
  69. -- Table structure for table `users`
  70. --
  71.  
  72. CREATE TABLE `users` (
  73.   `id` bigint(20) UNSIGNED NOT NULL,
  74.   `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  75.   `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  76.   `email_verified_at` timestamp NULL DEFAULT NULL,
  77.   `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  78.   `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  79.   `created_at` timestamp NULL DEFAULT NULL,
  80.   `updated_at` timestamp NULL DEFAULT NULL
  81. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  82.  
  83. --
  84. -- Indexes for dumped tables
  85. --
  86.  
  87. --
  88. -- Indexes for table `failed_jobs`
  89. --
  90. ALTER TABLE `failed_jobs`
  91.   ADD PRIMARY KEY (`id`),
  92.   ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
  93.  
  94. --
  95. -- Indexes for table `migrations`
  96. --
  97. ALTER TABLE `migrations`
  98.   ADD PRIMARY KEY (`id`);
  99.  
  100. --
  101. -- Indexes for table `password_resets`
  102. --
  103. ALTER TABLE `password_resets`
  104.   ADD KEY `password_resets_email_index` (`email`);
  105.  
  106. --
  107. -- Indexes for table `users`
  108. --
  109. ALTER TABLE `users`
  110.   ADD PRIMARY KEY (`id`),
  111.   ADD UNIQUE KEY `users_email_unique` (`email`);
  112.  
  113. --
  114. -- AUTO_INCREMENT for dumped tables
  115. --
  116.  
  117. --
  118. -- AUTO_INCREMENT for table `failed_jobs`
  119. --
  120. ALTER TABLE `failed_jobs`
  121.   MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
  122.  
  123. --
  124. -- AUTO_INCREMENT for table `migrations`
  125. --
  126. ALTER TABLE `migrations`
  127.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
  128.  
  129. --
  130. -- AUTO_INCREMENT for table `users`
  131. --
  132. ALTER TABLE `users`
  133.   MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
  134.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement