Authorization-RBAC
view release on metacpan or search on metacpan
t/lib/Schema/RBAC/Result/Operation.pm view on Meta::CPAN
use base 'DBIx::Class::Core';
__PACKAGE__->load_components;
=head1 NAME
Schema::RBAC::Result::Operation
=cut
__PACKAGE__->table("operation");
=head1 ACCESSORS
=head2 id
data_type: 'integer'
is_auto_increment: 1
is_nullable: 0
=head2 name
data_type: 'varchar'
is_nullable: 0
size: 100
=head2 active
data_type: 'tinyint'
default_value: 1
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"id",
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"name",
{ data_type => "varchar", is_nullable => 0, size => 100 },
"active",
{ data_type => "tinyint", default_value => 1, is_nullable => 0 },
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->add_unique_constraint("name", ["name"]);
=head1 RELATIONS
=head2 permissions
Type: has_many
Related object: L<Schema::RBAC::Result::Permission>
=cut
__PACKAGE__->has_many(
"permissions",
"Schema::RBAC::Result::Permission",
{ "foreign.operation_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-06-02 18:58:18
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MyYjvlkrcxBwBm9OPw9oyQ
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
( run in 0.594 second using v1.01-cache-2.11-cpan-5a3173703d6 )