Login   Register  
PHP Classes
elePHPant
Icontem

File: db.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Viktor  >  Universal comment module  >  db.sql  >  Download  
File: db.sql
Role: Auxiliary data
Content type: text/plain
Description: MySQL Dump
Class: Universal comment module
Generic site comments system
Author: By
Last change:
Date: 2008-04-18 15:10
Size: 563 bytes
 

Contents

Class file image Download
# MySQL-Front Dump 2.5
#
# Host: localhost   Database: comment
# --------------------------------------------------------
# Server version 4.1.22-community-nt


#
# Table structure for table 'db_comment'
#

DROP TABLE IF EXISTS `db_comment`;
CREATE TABLE `db_comment` (
  `_id` bigint(11) unsigned NOT NULL auto_increment,
  `id` varchar(20) NOT NULL default '',
  `msg` text,
  `userid` bigint(11) unsigned default '1',
  `dtime` datetime default NULL,
  PRIMARY KEY  (`_id`,`id`),
  UNIQUE KEY `_id` (`_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;