[rt-commit] CVS Update: rt
tobiasb at fsck.com
tobiasb at fsck.com
Tue Feb 29 14:27:58 EST 2000
CVSROOT: /raid/cvsroot
Module name: rt
Repository: rt/etc/
Changes by: tobiasb at pallas.eruditorum.org. 00/02/29 14:27:58
Modified files:
rt/etc/: Tag: rt-1-1 schema.mysql
Log message:
# Primarly used by RT::Actions::SendEmail as well as some subclasses
# to determinate whom to send emails to. This scheme should work out
# better than the scheme under RT 1.0, and should suit most users.
# For more fine grained control, it's possible to create tables as you
# like and make a new subclass of RT::Actions::SendEmail where the
# SetRecepients sub is overloaded :)
CREATE TABLE Watchers (
id int(11) AUTO_INCREMENT PRIMARY KEY,
Value int(11),
Scope varchar(16), # Might be "Queue" and "Ticket" as for now
# ... might be extended to "Keywords", "Owners", etc.
Email VARCHAR(255),
Type VARCHAR(16), #Requestor, Cc, Bcc
Creator INT(11),
Created TIMESTAMP,
LastUpdatedBy INT(11),
LastUpdated TIMESTAMP
)\g
More information about the Rt-commit
mailing list