Extending rt3

I want to extend rt3-Tickets with a property “Interesting”, bit.

Is the correct way to do it to
a) alter table Tickets …
b) create Ticket_Local.pm, which overloads methods
Create
Interesting => ‘1’,

Interesting => $args{‘Interesting’},
_Classaccessible
Interesting => {read => 1, write => 1, type => ‘smallint(6)’,
default => ‘1’},
c) Add a LimitInteresting to Tickets_Local.pm et al.

Anything more I should look out for?

/Jonas

Why not use a custom field?On Tue, Jun 17, 2003 at 04:28:25PM +0200, Jonas Lincoln wrote:

I want to extend rt3-Tickets with a property “Interesting”, bit.

Is the correct way to do it to
a) alter table Tickets …
b) create Ticket_Local.pm, which overloads methods
Create
Interesting => ‘1’,

Interesting => $args{‘Interesting’},
_Classaccessible
Interesting => {read => 1, write => 1, type =>
‘smallint(6)’, default => ‘1’},
c) Add a LimitInteresting to Tickets_Local.pm et al.

Anything more I should look out for?

/Jonas


rt-devel mailing list
rt-devel@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-devel

Request Tracker... So much more than a help desk — Best Practical Solutions – Trouble Ticketing. Free.

In that case, I want one of the options to be preselected (default). Is
this possible with custom fields?

Jesse Vincent wrote: