| Lines 397-402
          __PACKAGE__->table("borrowers");
      
      
        Link Here | 
        
          | 397 |   default_value: 1 | 397 |   default_value: 1 | 
        
          | 398 |   is_nullable: 0 | 398 |   is_nullable: 0 | 
        
          | 399 |  | 399 |  | 
            
              |  |  | 400 | =head2 privacy_relative_checkouts | 
            
              | 401 |  | 
            
              | 402 |   data_type: 'tinyint' | 
            
              | 403 |   default_value: 0 | 
            
              | 404 |   is_nullable: 0 | 
            
              | 405 |  | 
            
              | 406 | =head2 privacy_guarantor_checkouts | 
            
              | 407 |  | 
            
              | 408 |   data_type: 'tinyint' | 
            
              | 409 |   default_value: 0 | 
            
              | 410 |   is_nullable: 0 | 
            
              | 411 |  | 
        
          | 400 | =cut | 412 | =cut | 
        
          | 401 |  | 413 |  | 
        
          | 402 | __PACKAGE__->add_columns( | 414 | __PACKAGE__->add_columns( | 
  
    | Lines 546-551
          __PACKAGE__->add_columns(
      
      
        Link Here | 
        
          | 546 |   { data_type => "varchar", is_nullable => 1, size => 50 }, | 558 |   { data_type => "varchar", is_nullable => 1, size => 50 }, | 
        
          | 547 |   "privacy", | 559 |   "privacy", | 
        
          | 548 |   { data_type => "integer", default_value => 1, is_nullable => 0 }, | 560 |   { data_type => "integer", default_value => 1, is_nullable => 0 }, | 
            
              |  |  | 561 |   "privacy_relative_checkouts", | 
            
              | 562 |   { data_type => "tinyint", default_value => 0, is_nullable => 0 }, | 
            
              | 563 |   "privacy_guarantor_checkouts", | 
            
              | 564 |   { data_type => "tinyint", default_value => 0, is_nullable => 0 }, | 
        
          | 549 | ); | 565 | ); | 
        
          | 550 |  | 566 |  | 
        
          | 551 | =head1 PRIMARY KEY | 567 | =head1 PRIMARY KEY | 
  
    | Lines 1072-1080
          Composing rels: L</course_instructors> -> course
      
      
        Link Here | 
        
          | 1072 | __PACKAGE__->many_to_many("courses", "course_instructors", "course"); | 1088 | __PACKAGE__->many_to_many("courses", "course_instructors", "course"); | 
        
          | 1073 |  | 1089 |  | 
        
          | 1074 |  | 1090 |  | 
          
            
              | 1075 | # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 | 1091 | # Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-07-21 12:03:28 | 
            
              | 1076 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5cfpOojccKCoVRMj+0mWHg | 1092 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YU6nhBaKHuvM8f1zE5dIfA | 
        
          | 1077 |  | 1093 |  | 
            
              |  |  | 1094 | __PACKAGE__->belongs_to( | 
            
              | 1095 |     "guarantor", | 
            
              | 1096 |     "Koha::Schema::Result::Borrower", | 
            
              | 1097 |     { borrowernumber => "guarantorid" }, | 
            
              | 1098 | ); | 
        
          | 1078 |  | 1099 |  | 
            
              | 1079 | # You can replace this text with custom content, and it will be preserved on regeneration |  |  | 
        
          | 1080 | 1; | 1100 | 1; |