Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.6.4
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Client : 127.0.0.1
  6. -- Généré le : Lun 26 Septembre 2016 à 20:11
  7. -- Version du serveur : 5.7.14
  8. -- Version de PHP : 7.0.10
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8mb4 */;
  18.  
  19. --
  20. -- Base de données : `siteweb`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Structure de la table `zedx_maloc_jobs`
  27. --
  28.  
  29. CREATE TABLE `zedx_maloc_jobs` (
  30. `id` bigint(20) UNSIGNED NOT NULL,
  31. `queue` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  32. `payload` longtext COLLATE utf8_unicode_ci NOT NULL,
  33. `attempts` tinyint(3) UNSIGNED NOT NULL,
  34. `reserved` tinyint(3) UNSIGNED NOT NULL,
  35. `reserved_at` int(10) UNSIGNED DEFAULT NULL,
  36. `available_at` int(10) UNSIGNED NOT NULL,
  37. `created_at` int(10) UNSIGNED NOT NULL
  38. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  39.  
  40. --
  41. -- Contenu de la table `zedx_maloc_jobs`
  42. --
  43.  
  44. INSERT INTO `zedx_maloc_jobs` (`id`, `queue`, `payload`, `attempts`, `reserved`, `reserved_at`, `available_at`, `created_at`) VALUES
  45. (1, 'default', '{"job":"Illuminate\\\\Queue\\\\CallQueuedHandler@call","data":{"commandName":"ZEDx\\\\Jobs\\\\UpdateCache","command":"O:21:\\"ZEDx\\\\Jobs\\\\UpdateCache\\":6:{s:5:\\"model\\";O:45:\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\":2:{s:5:\\"class\\";s:20:\\"ZEDx\\\\Models\\\\Template\\";s:2:\\"id\\";i:1;}s:7:\\"deleted\\";b:0;s:10:\\"connection\\";N;s:5:\\"queue\\";N;s:5:\\"delay\\";N;s:6:\\"\\u0000*\\u0000job\\";N;}"}}', 0, 1, 1474920265, 1474920265, 1474920265);
  46.  
  47. --
  48. -- Index pour les tables exportées
  49. --
  50.  
  51. --
  52. -- Index pour la table `zedx_maloc_jobs`
  53. --
  54. ALTER TABLE `zedx_maloc_jobs`
  55. ADD PRIMARY KEY (`id`),
  56. ADD KEY `jobs_queue_reserved_reserved_at_index` (`queue`,`reserved`,`reserved_at`);
  57.  
  58. --
  59. -- AUTO_INCREMENT pour les tables exportées
  60. --
  61.  
  62. --
  63. -- AUTO_INCREMENT pour la table `zedx_maloc_jobs`
  64. --
  65. ALTER TABLE `zedx_maloc_jobs`
  66. MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  67. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  68. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  69. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement