View | Details | Raw Unified | Return to bug 11891
Collapse All | Expand All

(-)a/Koha/Schema.pm (-1 / +1 lines)
Lines 15-20 __PACKAGE__->load_namespaces; Link Here
15
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
15
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
16
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oDUxXckmfk6H9YCjW8PZTw
16
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oDUxXckmfk6H9YCjW8PZTw
17
17
18
__PACKAGE__->storage_type('Koha::Storage');
19
18
19
# You can replace this text with custom content, and it will be preserved on regeneration
20
1;
20
1;
(-)a/Koha/Storage.pm (-17 lines)
Lines 1-16 Link Here
1
use utf8;
2
package Koha::Storage;
3
4
use strict;
5
use warnings;
6
7
use base 'DBIx::Class::Storage::DBI';
8
sub DESTROY {
9
    my $self = shift;
10
11
    # destroy just the object if not native to this process/thread
12
    $self->_preserve_foreign_dbh;
13
14
    $self->_dbh(undef);
15
}
16
1;
17
- 

Return to bug 11891