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

Contents of /contributions/modules/citizenspeak/citizenspeak.mysql

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


Revision 1.5 - (show annotations) (download)
Tue Nov 1 17:08:04 2005 UTC (4 years ago) by georgehotelling
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1, DRUPAL-4-6
Changes since 1.4: +2 -2 lines
Removed hidden unicode character from citizenspeak_thankyou_options (thanks Gregory Heller)
1 -- $Id: citizenspeak.mysql,v 1.4 2005/10/31 21:33:39 georgehotelling Exp $
2 CREATE TABLE citizenspeak_campaigns (
3 nid int(11) not null,
4 email_message text not null,
5 email_recipients text not null,
6 campaign_format int(1) unsigned not null default 0,
7 index (nid)
8 );
9
10 CREATE TABLE citizenspeak_participants (
11 nid int(11) not null,
12 id int(11) unsigned not null,
13 name varchar(255),
14 organization varchar(255),
15 email varchar(255),
16 address varchar(255),
17 city varchar(255),
18 state char(255),
19 zip char(5),
20 phone varchar(255),
21 fax varchar(255) default null,
22 personal_statement text,
23 sent_at datetime,
24 index (nid),
25 primary key (id)
26 );
27
28 CREATE TABLE citizenspeak_thankyou_options (
29 uid int(10) not null default 0,
30 use_redirect int(1) unsigned not null default 0,
31 redirect_url varchar(255),
32 request_volunteers int(1) unsigned not null default 0,
33 volunteer_email varchar(255),
34 request_donations int(1) unsigned not null default 0,
35 donation_paypal_id varchar(255),
36 request_memberships int(1) unsigned not null default 0,
37 membership_paypal_id varchar(255),
38 membership_paypal_amount varchar(255),
39 include_additional_text int(1) unsigned not null default 0,
40 additional_text_language varchar(255),
41 additional_text text,
42 request_feedback int(1) unsigned not null default 0,
43 feedback_email varchar(255),
44 primary key (uid)
45 );

  ViewVC Help
Powered by ViewVC 1.1.2