/[drupal]/contributions/sandbox/jjeff/rotomail/rotomail.mysql
ViewVC logotype

Contents of /contributions/sandbox/jjeff/rotomail/rotomail.mysql

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


Revision 1.1 - (show annotations) (download)
Sun Aug 14 01:37:13 2005 UTC (4 years, 3 months ago) by jjeff
Branch: MAIN
CVS Tags: HEAD
rotomail.module is a rotating mailing list module.
Rotating mailing lists are lists where each submitted message is sent
to the next person on the list. This is good for distributing help requests
to different tech support people or evenly spreading out contacts for
commission-type business. Project to be created soon...
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.2-pl1
3 -- http://www.phpmyadmin.net
4 --
5 -- Host: localhost
6 -- Generation Time: Aug 13, 2005 at 06:35 PM
7 -- Server version: 4.0.23
8 -- PHP Version: 4.3.11
9 --
10 -- Database: `fearless`
11 --
12
13 -- --------------------------------------------------------
14
15 --
16 -- Table structure for table `rotomail_contacts`
17 --
18
19 CREATE TABLE rotomail_contacts (
20 cid int(10) NOT NULL default '0',
21 mailoruid varchar(100) NOT NULL default '',
22 lid int(10) NOT NULL default '0',
23 weight int(3) NOT NULL default '0'
24 ) TYPE=MyISAM;
25
26 -- --------------------------------------------------------
27
28 --
29 -- Table structure for table `rotomail_lists`
30 --
31
32 CREATE TABLE rotomail_lists (
33 lid int(10) NOT NULL default '0',
34 name varchar(100) NOT NULL default '',
35 prefix varchar(100) NOT NULL default '',
36 description varchar(200) NOT NULL default ''
37 ) TYPE=MyISAM;
38
39 -- --------------------------------------------------------
40
41 --
42 -- Table structure for table `rotomail_log`
43 --
44
45 CREATE TABLE rotomail_log (
46 mid int(10) NOT NULL default '0',
47 lid int(10) NOT NULL default '0',
48 cid int(10) NOT NULL default '0',
49 stamp int(20) NOT NULL default '0',
50 mailfrom varchar(100) NOT NULL default '',
51 subject varchar(255) NOT NULL default '',
52 glop text NOT NULL
53 ) TYPE=MyISAM;
54

  ViewVC Help
Powered by ViewVC 1.1.2