Lines 27-32
my $schema = Koha::Database->new->schema;
Link Here
|
27 |
$schema->storage->txn_begin; |
27 |
$schema->storage->txn_begin; |
28 |
|
28 |
|
29 |
# Delete all categories |
29 |
# Delete all categories |
|
|
30 |
$schema->resultset('Issue')->search->delete; |
30 |
$schema->resultset('Borrower')->search->delete; |
31 |
$schema->resultset('Borrower')->search->delete; |
31 |
$schema->resultset('Category')->search->delete; |
32 |
$schema->resultset('Category')->search->delete; |
32 |
|
33 |
|
33 |
- |
|
|