| Osgood-Server documentation | Contained in the Osgood-Server distribution. |
Osgood::Server::Model::Action
Actions are a component of events. The "verb" of the event.
See 'actions' table for all methods.
Copyright 2008 by Magazines.com, LLC
You can redistribute and/or modify this code under the same terms as Perl itself.
| Osgood-Server documentation | Contained in the Osgood-Server distribution. |
package Osgood::Server::Model::Action; use strict;
use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto Core/); __PACKAGE__->table('actions'); __PACKAGE__->add_columns( action_id => { data_type => 'bigint', is_auto_increment => 1 }, name => { data_type => 'varchar', size => 64 } ); __PACKAGE__->set_primary_key('action_id'); __PACKAGE__->has_many(events => 'Osgood::Server::Model::Event', 'action_id' );
1;