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

Contents of /contributions/modules/volunteer/volunteer.mysql

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


Revision 1.6 - (show annotations) (download)
Fri Sep 23 23:24:16 2005 UTC (4 years, 2 months ago) by killes
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +2 -1 lines
added a volunteer overview page, requires database update.
1 --
2 -- Table structure for table `volunteer`
3 --
4
5 CREATE TABLE volunteer (
6 nid int(10) unsigned NOT NULL default '0',
7 wanted int(3) default '2',
8 uid int(11) default NULL,
9 message_approve text,
10 message_deny text,
11 message_wait text,
12 message_reminder text,
13 message_follow_up text,
14 PRIMARY KEY (nid)
15 ) TYPE=MyISAM;
16
17 --
18 -- Table structure for table `volunteer_contact_event`
19 --
20
21 CREATE TABLE volunteer_contact_event (
22 cid int(10) unsigned NOT NULL default '0',
23 timestamp int(10) unsigned NOT NULL default '0',
24 rating int(2) default NULL,
25 comments text,
26 nid int(10) unsigned NOT NULL default '0',
27 stage int(2) unsigned default NULL,
28 PRIMARY KEY (nid, cid)
29 ) TYPE=MyISAM;
30

  ViewVC Help
Powered by ViewVC 1.1.2