V2 /
RegEventsV2.RegEvents HistoryShow minor edits - Show changes to markup Changed line 6 from:
event_eventid int(8) NOT NULL, to:
event_eid int(8) NOT NULL, Deleted line 0:
DescriptionChanged line 4 from:
CREATE TABLE reg_events ( to:
[@ CREATE TABLE reg_events ( Added lines 13-16:
Changed lines 1-4 from:
Database Schemato:
DescriptionDefines the relationship between registrants and events they have signed up for. A mapping table. SchemaDeleted lines 13-15:
DescriptionDefines the relationship between registrants and events they have signed up for. A mapping table. Added lines 1-13:
Database Schema CREATE TABLE reg_events (
event_rid int(8) NOT NULL,
event_eventid int(8) NOT NULL,
event_cid int(8) NOT NULL,
KEY eventsrid (event_rid),
CONSTRAINT `reg_events_ibfk_1` FOREIGN KEY (`event_rid`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE,
CONSTRAINT `reg_events_ibfk_1` FOREIGN KEY (`event_eventid`) REFERENCES `config_events` (`event_id`) ON DELETE CASCADE,
CONSTRAINT `reg_events_ibfk_1` FOREIGN KEY (`event_cid`) REFERENCES `con_detail` (`con_cid`) ON DELETE CASCADE
) TYPE=InnoDB?;
DescriptionDefines the relationship between registrants and events they have signed up for. A mapping table. |