| Lines 1-106
          
      
      
        Link Here | 
            
              | 1 | use utf8; |  |  | 
            
              | 2 | package Koha::Schema::Result::Accountoffset; | 
            
              | 3 |  | 
            
              | 4 | # Created by DBIx::Class::Schema::Loader | 
            
              | 5 | # DO NOT MODIFY THE FIRST PART OF THIS FILE | 
            
              | 6 |  | 
            
              | 7 | =head1 NAME | 
            
              | 8 |  | 
            
              | 9 | Koha::Schema::Result::Accountoffset | 
            
              | 10 |  | 
            
              | 11 | =cut | 
            
              | 12 |  | 
            
              | 13 | use strict; | 
            
              | 14 | use warnings; | 
            
              | 15 |  | 
            
              | 16 | use base 'DBIx::Class::Core'; | 
            
              | 17 |  | 
            
              | 18 | =head1 TABLE: C<accountoffsets> | 
            
              | 19 |  | 
            
              | 20 | =cut | 
            
              | 21 |  | 
            
              | 22 | __PACKAGE__->table("accountoffsets"); | 
            
              | 23 |  | 
            
              | 24 | =head1 ACCESSORS | 
            
              | 25 |  | 
            
              | 26 | =head2 borrowernumber | 
            
              | 27 |  | 
            
              | 28 |   data_type: 'integer' | 
            
              | 29 |   default_value: 0 | 
            
              | 30 |   is_foreign_key: 1 | 
            
              | 31 |   is_nullable: 0 | 
            
              | 32 |  | 
            
              | 33 | =head2 accountno | 
            
              | 34 |  | 
            
              | 35 |   data_type: 'smallint' | 
            
              | 36 |   default_value: 0 | 
            
              | 37 |   is_nullable: 0 | 
            
              | 38 |  | 
            
              | 39 | =head2 offsetaccount | 
            
              | 40 |  | 
            
              | 41 |   data_type: 'smallint' | 
            
              | 42 |   default_value: 0 | 
            
              | 43 |   is_nullable: 0 | 
            
              | 44 |  | 
            
              | 45 | =head2 offsetamount | 
            
              | 46 |  | 
            
              | 47 |   data_type: 'decimal' | 
            
              | 48 |   is_nullable: 1 | 
            
              | 49 |   size: [28,6] | 
            
              | 50 |  | 
            
              | 51 | =head2 timestamp | 
            
              | 52 |  | 
            
              | 53 |   data_type: 'timestamp' | 
            
              | 54 |   datetime_undef_if_invalid: 1 | 
            
              | 55 |   default_value: current_timestamp | 
            
              | 56 |   is_nullable: 0 | 
            
              | 57 |  | 
            
              | 58 | =cut | 
            
              | 59 |  | 
            
              | 60 | __PACKAGE__->add_columns( | 
            
              | 61 |   "borrowernumber", | 
            
              | 62 |   { | 
            
              | 63 |     data_type      => "integer", | 
            
              | 64 |     default_value  => 0, | 
            
              | 65 |     is_foreign_key => 1, | 
            
              | 66 |     is_nullable    => 0, | 
            
              | 67 |   }, | 
            
              | 68 |   "accountno", | 
            
              | 69 |   { data_type => "smallint", default_value => 0, is_nullable => 0 }, | 
            
              | 70 |   "offsetaccount", | 
            
              | 71 |   { data_type => "smallint", default_value => 0, is_nullable => 0 }, | 
            
              | 72 |   "offsetamount", | 
            
              | 73 |   { data_type => "decimal", is_nullable => 1, size => [28, 6] }, | 
            
              | 74 |   "timestamp", | 
            
              | 75 |   { | 
            
              | 76 |     data_type => "timestamp", | 
            
              | 77 |     datetime_undef_if_invalid => 1, | 
            
              | 78 |     default_value => \"current_timestamp", | 
            
              | 79 |     is_nullable => 0, | 
            
              | 80 |   }, | 
            
              | 81 | ); | 
            
              | 82 |  | 
            
              | 83 | =head1 RELATIONS | 
            
              | 84 |  | 
            
              | 85 | =head2 borrowernumber | 
            
              | 86 |  | 
            
              | 87 | Type: belongs_to | 
            
              | 88 |  | 
            
              | 89 | Related object: L<Koha::Schema::Result::Borrower> | 
            
              | 90 |  | 
            
              | 91 | =cut | 
            
              | 92 |  | 
            
              | 93 | __PACKAGE__->belongs_to( | 
            
              | 94 |   "borrowernumber", | 
            
              | 95 |   "Koha::Schema::Result::Borrower", | 
            
              | 96 |   { borrowernumber => "borrowernumber" }, | 
            
              | 97 |   { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | 
            
              | 98 | ); | 
            
              | 99 |  | 
            
              | 100 |  | 
            
              | 101 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | 
            
              | 102 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OTfcUiJCPb5aU/gjqAb/bA | 
            
              | 103 |  | 
            
              | 104 |  | 
            
              | 105 | # You can replace this text with custom content, and it will be preserved on regeneration | 
            
              | 106 | 1; | 
            
              | 107 | -  |