File size: 2.23Kb
-- phpMyAdmin SQL Dump
-- version 2.6.1
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Время создания: Июл 19 2010 г., 02:28
-- Версия сервера: 5.0.45
-- Версия PHP: 5.2.12
--
-- БД: `motor_19_blogs`
--
-- --------------------------------------------------------
--
-- Структура таблицы `blog_categories`
--
CREATE TABLE `blog_categories` (
`id` int(11) NOT NULL auto_increment,
`name_category_blog` text NOT NULL,
`comm_category_blog` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;
--
-- Дамп данных таблицы `blog_categories`
--
-- --------------------------------------------------------
--
-- Структура таблицы `blog_comments`
--
CREATE TABLE `blog_comments` (
`id` int(11) NOT NULL auto_increment,
`id_category` int(11) default NULL,
`id_blog` int(11) NOT NULL,
`time_comment` int(11) NOT NULL,
`author_comment` varchar(32) NOT NULL,
`text_comment` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;
--
-- Дамп данных таблицы `blog_comments`
--
-- --------------------------------------------------------
--
-- Структура таблицы `blog_vote`
--
CREATE TABLE `blog_vote` (
`id` int(11) NOT NULL auto_increment,
`id_category` int(11) NOT NULL,
`id_blog` int(11) default NULL,
`voice_vote_a` int(11) NOT NULL,
`voice_vote_b` int(11) NOT NULL,
`user_vote` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;
--
-- Дамп данных таблицы `blog_vote`
--
-- --------------------------------------------------------
--
-- Структура таблицы `directly_blogs`
--
CREATE TABLE `directly_blogs` (
`id` int(11) NOT NULL auto_increment,
`id_blog_category` int(11) default NULL,
`read_blog_categories` int(11) NOT NULL,
`comm_blog_categories` int(11) NOT NULL,
`time_blog_categories` int(11) NOT NULL,
`author_blog_categories` varchar(32) default NULL,
`name_blog_categories` text NOT NULL,
`text_blog_categories` text,
`key_blog_categories` text NOT NULL,
`evaluation_blog_categories` int(11) NOT NULL,
`total_ratings` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;
--
-- Дамп данных таблицы `directly_blogs`
--