| Lines 41-51
          foreign key linking to the virtualshelves table, defines the list that this reco
      
      
        Link Here | 
        
          | 41 |  | 41 |  | 
        
          | 42 | foreign key linking to the biblio table, defines the bib record that has been added to the list | 42 | foreign key linking to the biblio table, defines the bib record that has been added to the list | 
        
          | 43 |  | 43 |  | 
            
              | 44 | =head2 flags |  |  | 
            
              | 45 |  | 
            
              | 46 |   data_type: 'integer' | 
            
              | 47 |   is_nullable: 1 | 
            
              | 48 |  | 
        
          | 49 | =head2 dateadded | 44 | =head2 dateadded | 
        
          | 50 |  | 45 |  | 
        
          | 51 |   data_type: 'timestamp' | 46 |   data_type: 'timestamp' | 
  
    | Lines 80-87
          __PACKAGE__->add_columns(
      
      
        Link Here | 
        
          | 80 |     is_foreign_key => 1, | 75 |     is_foreign_key => 1, | 
        
          | 81 |     is_nullable    => 0, | 76 |     is_nullable    => 0, | 
        
          | 82 |   }, | 77 |   }, | 
            
              | 83 |   "flags", |  |  | 
            
              | 84 |   { data_type => "integer", is_nullable => 1 }, | 
        
          | 85 |   "dateadded", | 78 |   "dateadded", | 
        
          | 86 |   { | 79 |   { | 
        
          | 87 |     data_type => "timestamp", | 80 |     data_type => "timestamp", | 
  
    | Lines 146-153
          __PACKAGE__->belongs_to(
      
      
        Link Here | 
        
          | 146 | ); | 139 | ); | 
        
          | 147 |  | 140 |  | 
        
          | 148 |  | 141 |  | 
          
            
              | 149 | # Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 | 142 | # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-27 14:34:08 | 
            
              | 150 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4c7f4juRHZXLlSgNwOohrA | 143 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IBPuY1b5aPWbhS6aDeAKHw | 
        
          | 151 |  | 144 |  | 
        
          | 152 | #TODO See BZ 14544: Should be resolved by db revision | 145 | #TODO See BZ 14544: Should be resolved by db revision | 
        
          | 153 | __PACKAGE__->set_primary_key("shelfnumber","biblionumber"); | 146 | __PACKAGE__->set_primary_key("shelfnumber","biblionumber"); | 
            
              | 154 | -  |  |  |