123456789101112131415161718192021222324252627282930313233343536 |
- -- phpMyAdmin SQL Dump
- -- version 4.1.14
- -- http://www.phpmyadmin.net
- --
- -- Host: 127.0.0.1
- -- Generation Time: Sep 14, 2014 at 11:52 AM
- -- Server version: 5.6.17
- -- PHP Version: 5.5.12
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
- --
- -- Database: `cygnite`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `migrations`
- --
- CREATE TABLE IF NOT EXISTS `migrations` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `migration` varchar(255) NOT NULL,
- `version` int(11) NOT NULL,
- `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
- --
- -- Dumping data for table `migrations`
- --
- INSERT INTO `migrations` (`id`, `migration`, `version`, `created_at`) VALUES
- (1, '20140914145654_shopping_product', 0, '2014-09-14 15:19:27');
|