/[drupal]/contributions/modules/smsgateway/smsgateway.mysql
ViewVC logotype

Contents of /contributions/modules/smsgateway/smsgateway.mysql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Sun Sep 3 15:53:51 2006 UTC (3 years, 2 months ago) by therave
Branch: MAIN
CVS Tags: DRUPAL-4-7--1-0, DRUPAL-4-7--1-1, DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5, DRUPAL-4-7
Changes since 1.1: +2 -2 lines
Updated for Drupal 4.7
1 --
2 -- $Id: smsgateway.mysql,v 1.1 2005/10/22 22:24:14 therave Exp $
3 -- Table structure for table 'smslog'
4 --
5
6 CREATE TABLE smslog (
7 sid int(10) NOT NULL auto_increment,
8 direction varchar(3) NOT NULL,
9 number varchar(20) NOT NULL,
10 message text default NULL,
11 response varchar(128) default NULL,
12 timestamp int(11) unsigned NOT NULL default '0',
13 KEY smslog_timestamp (timestamp),
14 PRIMARY KEY (sid)
15 ) TYPE=MyISAM /*!40100 DEFAULT CHARACTER SET utf8 */;
16
17

  ViewVC Help
Powered by ViewVC 1.1.2