migrations.sql 877 B

123456789101112131415161718192021222324252627282930313233343536
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.1.14
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: Sep 14, 2014 at 11:52 AM
  7. -- Server version: 5.6.17
  8. -- PHP Version: 5.5.12
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. SET time_zone = "+00:00";
  11. --
  12. -- Database: `cygnite`
  13. --
  14. -- --------------------------------------------------------
  15. --
  16. -- Table structure for table `migrations`
  17. --
  18. CREATE TABLE IF NOT EXISTS `migrations` (
  19. `id` int(11) NOT NULL AUTO_INCREMENT,
  20. `migration` varchar(255) NOT NULL,
  21. `version` int(11) NOT NULL,
  22. `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  23. PRIMARY KEY (`id`)
  24. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  25. --
  26. -- Dumping data for table `migrations`
  27. --
  28. INSERT INTO `migrations` (`id`, `migration`, `version`, `created_at`) VALUES
  29. (1, '20140914145654_shopping_product', 0, '2014-09-14 15:19:27');