Skip to content

Instantly share code, notes, and snippets.

@rich97
Created April 4, 2011 12:36
Show Gist options
  • Save rich97/901560 to your computer and use it in GitHub Desktop.
Save rich97/901560 to your computer and use it in GitHub Desktop.
-- phpMyAdmin SQL Dump
-- version 3.3.10
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 04, 2011 at 01:36 PM
-- Server version: 5.5.10
-- PHP Version: 5.3.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `li3_cms`
--
-- --------------------------------------------------------
--
-- Table structure for table `systems`
--
CREATE TABLE IF NOT EXISTS `systems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`title` varchar(200) COLLATE utf8_bin NOT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=2 ;
--
-- Dumping data for table `systems`
--
INSERT INTO `systems` (`id`, `user_id`, `title`, `created`, `modified`) VALUES
(1, 1, 'test', '2011-04-04 17:06:34', '2011-04-27 17:06:39');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8_bin NOT NULL,
`username` varchar(100) COLLATE utf8_bin NOT NULL,
`password` varchar(128) COLLATE utf8_bin NOT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
--
-- Dumping data for table `users`
--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment