V2 /
ConfigEventsV2.ConfigEvents HistoryShow minor edits - Show changes to markup Changed lines 1-4 from:
Create table commandto:
DescriptionThis table contains a listing of all the events for conventions, on a per-convention ID (cid) basis. Edits to this table are done via the Maintenance screen. SchemaDeleted lines 28-30:
DescriptionThis table contains a listing of all the events for conventions, on a per-convention ID (cid) basis. Edits to this table are done via the Maintenance screen. Changed lines 22-24 from:
CONSTRAINT `config_events_ibfk_2` FOREIGN KEY (`event_owner`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE, CONSTRAINT `config_events_ibfk_3` FOREIGN KEY (`event_lasteditedby`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE to:
CONSTRAINT `config_events_ibfk_2` FOREIGN KEY (`event_owner`) REFERENCES `reg_master` (`master_rid`) ON DELETE SET NULL, CONSTRAINT `config_events_ibfk_3` FOREIGN KEY (`event_lasteditedby`) REFERENCES `reg_master` (`master_rid`) ON DELETE SET NULL Added line 1:
Create table commandChanged lines 22-23 from:
CONSTRAINT `config_events_ibfk_2` FOREIGN KEY (`event_owner`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE, to:
CONSTRAINT `config_events_ibfk_2` FOREIGN KEY (`event_owner`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE, Changed lines 25-39 from:
to:
) TYPE=InnoDB?;
DescriptionThis table contains a listing of all the events for conventions, on a per-convention ID (cid) basis. Edits to this table are done via the Maintenance screen. Columns of note
Added lines 1-23:
CREATE TABLE config_events (
event_id int(8) auto_increment,
event_cid int(8) NOT NULL default '0',
event_name varchar(20) default NULL,
event_description varchar(100) default NULL,
event_type varchar(20) default NULL,
event_category varchar(20) default NULL,
event_start timestamp,
event_end timestamp,
event_maxattendees int(4),
event_location varchar(100),
event_detail text,
event_cost float(8,2),
event_owner int(8),
event_lastupdated timestamp not null,
event_lasteditedby int(8),
KEY indexid (event_id),
KEY indextype (event_cid),
KEY indexname (event_name),
CONSTRAINT `config_events_ibfk_1` FOREIGN KEY (`event_cid`) REFERENCES `con_detail` (`con_cid`) ON DELETE CASCADE,
CONSTRAINT `config_events_ibfk_2` FOREIGN KEY (`event_owner`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE,
CONSTRAINT `config_events_ibfk_3` FOREIGN KEY (`event_lasteditedby`) REFERENCES `reg_master` (`master_rid`) ON DELETE CASCADE
) TYPE=InnoDB?;
|