PHP Classes

File: dotgo.table.sql

Recommend this page to a friend!
  Classes of Dave Smith   PHP dotGo Engine   dotgo.table.sql   Download  
File: dotgo.table.sql
Role: Auxiliary data
Content type: text/plain
Description: Database table structure
Class: PHP dotGo Engine
Interact with SMS messages sent to your site
Author: By
Last change:
Date: 8 years ago
Size: 372 bytes
 

Contents

Class file image Download
CREATE TABLE IF NOT EXISTS `dotgo_path` ( `id` int(8) NOT NULL AUTO_INCREMENT, `parent` int(8) NOT NULL DEFAULT '0', `keyword` varchar(128) NOT NULL DEFAULT '', `responseType` char(3) NOT NULL DEFAULT 'msg', `content` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `parent` (`parent`,`id`), KEY `keyword` (`keyword`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;