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

Contents of /contributions/modules/rsvp/rsvp.mysql

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


Revision 1.2 - (show annotations) (download)
Fri Mar 25 06:51:25 2005 UTC (4 years, 8 months ago) by crunchywelch
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-RC1, DRUPAL-6--1-0-RC2, DRUPAL-6--1-0-RC3, DRUPAL-6--2-0-RC3, DRUPAL-6--2-0-RC2, DRUPAL-6--2-0-RC1, DRUPAL-6--2-0-BETA1, DRUPAL-6--2-0-BETA2, DRUPAL-6--2-0-BETA3, DRUPAL-6--1-0-RC4, DRUPAL-5--1-8, DRUPAL-5--1-5, DRUPAL-5--1-4, DRUPAL-5--1-6, DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-3, DRUPAL-5--1-2, DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-4-7--1-0, DRUPAL-5--1-7, HEAD
Branch point for: DRUPAL-4-6, DRUPAL-4-7, DRUPAL-6--2, DRUPAL-5--2, DRUPAL-5, DRUPAL-6--1
Changes since 1.1: +3 -19 lines
port to 4.6, complete reworking of UI to include tabs, better confirmation screens for creating and editing, better hook_help implementation, update hook_link to work with new 4.6 event module,  remove db tables rsvp_event and rsvp_user_prefs,  rename db table rsvp_to_user to rsvp_invite, removed user preferences in favor of good defaults, user permissions audit, better email address input validation, invitation url by hash value access is always allowed, all html broken out into rsvp.theme file and theme functions, pruned rsvp.css
1 CREATE TABLE rsvp (
2 rid int(10) unsigned NOT NULL auto_increment,
3 nid int(10) unsigned NOT NULL default '0',
4 uid int(10) unsigned NOT NULL default '0',
5 name varchar(128) default '',
6 invite_text text,
7 blind int(3) unsigned NOT NULL default '0',
8 list_email int(3) unsigned NOT NULL default '0',
9 allow_invite int(3) unsigned NOT NULL default '0',
10 timestamp int(10) unsigned NOT NULL default '0',
11 PRIMARY KEY (rid,uid,nid)
12 );
13
14 CREATE TABLE rsvp_invite (
15 response enum('yes','no','maybe','none') NOT NULL default 'none',
16 rid int(10) unsigned NOT NULL default '0',
17 uid int(10) NOT NULL default '0',
18 email varchar(128) NOT NULL default '',
19 hash varchar(255) NOT NULL default '',
20 invited int(10) unsigned NOT NULL default '0',
21 received int(10) unsigned NOT NULL default '0',
22 timestamp int(10) unsigned NOT NULL default '0',
23 PRIMARY KEY (rid,email,uid)
24 );

  ViewVC Help
Powered by ViewVC 1.1.2