Created
November 21, 2011 17:27
-
-
Save rlemon/1383312 to your computer and use it in GitHub Desktop.
Blog db export.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 3.4.5deb1 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: localhost | |
-- Generation Time: Nov 21, 2011 at 12:26 PM | |
-- Server version: 5.1.58 | |
-- PHP Version: 5.3.6-13ubuntu3.2 | |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; | |
SET time_zone = "+00:00"; | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; | |
-- | |
-- Database: `blog` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `categories` | |
-- | |
CREATE TABLE IF NOT EXISTS `categories` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`description` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `category_map` | |
-- | |
CREATE TABLE IF NOT EXISTS `category_map` ( | |
`category_id` int(10) NOT NULL, | |
`post_id` int(10) NOT NULL | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `posts` | |
-- | |
CREATE TABLE IF NOT EXISTS `posts` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, | |
`type` int(10) NOT NULL, | |
`title` varchar(255) NOT NULL, | |
`text` text NOT NULL, | |
`date` varchar(255) NOT NULL, | |
`author_id` int(10) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `tags` | |
-- | |
CREATE TABLE IF NOT EXISTS `tags` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`description` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `tag_map` | |
-- | |
CREATE TABLE IF NOT EXISTS `tag_map` ( | |
`tag_id` int(10) NOT NULL, | |
`post_id` int(10) NOT NULL | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `users` | |
-- | |
CREATE TABLE IF NOT EXISTS `users` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, | |
`type` int(10) NOT NULL, | |
`username` varchar(255) NOT NULL, | |
`password` varchar(255) NOT NULL, | |
`firstname` varchar(255) NOT NULL, | |
`lastname` varchar(255) NOT NULL, | |
`email` varchar(255) NOT NULL, | |
`date` varchar(255) NOT NULL, | |
`ip` varchar(255) NOT NULL, | |
`url` varchar(255) NOT NULL, | |
`bio` text NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; | |
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | |
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | |
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment