PHP Classes

File: db.sql

Recommend this page to a friend!
  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: 16 years ago
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;