Просмотр файла tables.sql

Размер файла: 1.87Kb
-- phpMyAdmin SQL Dump
-- version 2.6.1
-- http://www.phpmyadmin.net
-- 
-- Хост: localhost
-- Время создания: Апр 01 2010 г., 20:32
-- Версия сервера: 5.0.45
-- Версия PHP: 5.2.4
-- 
-- БД: `top_sadiev`
-- 

-- --------------------------------------------------------

-- 
-- Структура таблицы `category`
-- 

CREATE TABLE `category` (
  `nomer` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  PRIMARY KEY  (`nomer`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;


-- --------------------------------------------------------

-- 
-- Структура таблицы `images`
-- 

CREATE TABLE `images` (
  `nomer` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  PRIMARY KEY  (`nomer`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;


-- 
-- Структура таблицы `users`
-- 

CREATE TABLE `users` (
  `id` int(11) NOT NULL auto_increment,
  `title` text NOT NULL,
  `category` int(11) default NULL,
  `images` int(11) default NULL,
  `pass` text NOT NULL,
  `email` text,
  `link` text NOT NULL,
  `about` text NOT NULL,
  `date` date NOT NULL default '0000-00-00',
  `today` int(11) NOT NULL default '0',
  `yesterday` int(11) NOT NULL default '0',
  `bef1yes` int(11) NOT NULL default '0',
  `bef2yes` int(11) NOT NULL default '0',
  `allday` int(11) NOT NULL default '0',
  `counthost` int(11) NOT NULL default '0',
  `1host` int(255) NOT NULL default '0',
  `2host` int(255) NOT NULL default '0',
  `3host` int(255) NOT NULL default '0',
  `ip1` text NOT NULL,
  `ip2` text NOT NULL,
  `ip3` text NOT NULL,
  `ip4` text NOT NULL,
  `cin` int(11) NOT NULL default '0',
  `allin` int(11) NOT NULL default '0',
  `out` int(11) NOT NULL default '0',
  `allout` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=cp1251 AUTO_INCREMENT=2 ;