Osgood::Server::Model::Object - Osgood::Server::Model::Object documentation


Osgood-Server documentation Contained in the Osgood-Server distribution.

Index


Code Index:

NAME

Top

Osgood::Server::Model::Object

DESCRIPTION

Top

Objects are a component of events. The "noun" of the event.

DATABASE

Top

See 'objects' table for all methods.

COPYRIGHT AND LICENSE

Top


Osgood-Server documentation Contained in the Osgood-Server distribution.
package Osgood::Server::Model::Object;
use strict;

use base qw/DBIx::Class/;

__PACKAGE__->load_components(qw/PK::Auto Core/);
__PACKAGE__->table('objects');
__PACKAGE__->add_columns(
	object_id  => { data_type => 'bigint', is_auto_increment => 1 },
	name       => { data_type => 'varchar', size => 64 }
);
__PACKAGE__->set_primary_key('object_id');
__PACKAGE__->has_many(events => 'Osgood::Server::Model::Event', 'object_id' );

1;