diff options
| author | Russ Allbery <rra@stanford.edu> | 2013-03-27 15:19:46 -0700 | 
|---|---|---|
| committer | Russ Allbery <rra@stanford.edu> | 2013-03-27 15:19:46 -0700 | 
| commit | 6871bae8e26beadaff5035de56b4f70a78961dc9 (patch) | |
| tree | 366943055e3db5c26a9415d1d2ea1486054e8177 /perl/Wallet/Schema/Result/AclEntry.pm | |
| parent | 61c348a8cc08e90c73993e09dc175b44c5a65681 (diff) | |
| parent | 06c44c9eb5efb00bb9368ed3709106c91b0b36b5 (diff) | |
Imported Upstream version 1.0
Diffstat (limited to 'perl/Wallet/Schema/Result/AclEntry.pm')
| -rw-r--r-- | perl/Wallet/Schema/Result/AclEntry.pm | 74 | 
1 files changed, 74 insertions, 0 deletions
| diff --git a/perl/Wallet/Schema/Result/AclEntry.pm b/perl/Wallet/Schema/Result/AclEntry.pm new file mode 100644 index 0000000..a33a98c --- /dev/null +++ b/perl/Wallet/Schema/Result/AclEntry.pm @@ -0,0 +1,74 @@ +# Wallet schema for an entry in an ACL. +# +# Written by Jon Robertson <jonrober@stanford.edu> +# Copyright 2012, 2013 +#     The Board of Trustees of the Leland Stanford Junior University +# +# See LICENSE for licensing terms. + +package Wallet::Schema::Result::AclEntry; + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=for stopwords +ACL + +=head1 NAME + +Wallet::Schema::Result::AclEntry - Wallet schema for an entry in an ACL + +=head1 DESCRIPTION + +=cut + +__PACKAGE__->table("acl_entries"); + +=head1 ACCESSORS + +=head2 ae_id + +  data_type: 'integer' +  is_nullable: 0 + +=head2 ae_scheme + +  data_type: 'varchar' +  is_nullable: 0 +  size: 32 + +=head2 ae_identifier + +  data_type: 'varchar' +  is_nullable: 0 +  size: 255 + +=cut + +__PACKAGE__->add_columns( +  "ae_id", +  { data_type => "integer", is_nullable => 0 }, +  "ae_scheme", +  { data_type => "varchar", is_nullable => 0, size => 32 }, +  "ae_identifier", +  { data_type => "varchar", is_nullable => 0, size => 255 }, +); +__PACKAGE__->set_primary_key("ae_id", "ae_scheme", "ae_identifier"); + +__PACKAGE__->belongs_to( +                      'acls', +                      'Wallet::Schema::Result::Acl', +                      { 'foreign.ac_id' => 'self.ae_id' }, +                      { is_deferrable => 1, on_delete => 'CASCADE', +                        on_update => 'CASCADE' }, +                     ); + +__PACKAGE__->has_one( +                     'acl_scheme', +                     'Wallet::Schema::Result::AclScheme', +                     { 'foreign.as_name' => 'self.ae_scheme' }, +                     { cascade_delete => 0 }, +                    ); +1; | 
