WCT Users (integrators)
Component : WCT_MAILQUEUE
Id : 017
|
|
Database Model
Script for database model creation
# phpMyAdmin MySQL-Dump
# http://www.htmlwizard.net/phpMyAdmin/
# --------------------------------------------------------
#
# Web Component DB Storage Model
# Object Name : WCT_MAILQUEUE
# Object SQL : Installation script
# Object ID : 017
# Object Prototype URL : http://www.diml.org/wct/proto/WCT_MAILQUEUE
# --------------------------------------------------------
# Table structure for table 'wct017_proto'
#
DROP TABLE IF EXISTS wct017_mailqueue;
CREATE TABLE wct017_mailqueue (
Id smallint(6) DEFAULT '0' NOT NULL auto_increment,
instance smallint(6) DEFAULT '0' NOT NULL auto_increment,
PRIMARY KEY (Id),
KEY instance (instance)
);
Script for database model deletion
# Web Component DB Storage Model
# Object Name : WCT_MAILQUEUE
# Object SQL : Uninstallation script
# Object ID : 017
# Object Prototype URL : http://www.diml.org/wct/proto/WCT_MAILQUEUE
# --------------------------------------------------------
DROP TABLE IF EXISTS wct017_mailqueue;
Script for database model cleanup
# Web Component DB Storage Model
# Object Name : WCT_MAILQUEUE
# Object SQL : Instance cleanup script
# Object ID : 017
# Object Prototype URL : http://www.diml.org/wct/proto/WCT_MAILQUEUE
# --------------------------------------------------------
DELETE FROM wct017_mailqueue WHERE instance = <%%WCT_MAILQUEUE::ID%%>;
All material is copyleft V.G. FREMAUX (EISTI France) 1999 to 2003 except explicitly mentioned
|