From 52db77b93ead47914e049f1e32e102e6b0dab40b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 10 Mar 2020 18:48:49 +0000 Subject: [PATCH] Bug 17845: (RM follow-up) Remove Printer DBIC Class Signed-off-by: Martin Renvoize --- Koha/Schema/Result/Printer.pm | 74 ----------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 Koha/Schema/Result/Printer.pm diff --git a/Koha/Schema/Result/Printer.pm b/Koha/Schema/Result/Printer.pm deleted file mode 100644 index 7386f2a525..0000000000 --- a/Koha/Schema/Result/Printer.pm +++ /dev/null @@ -1,74 +0,0 @@ -use utf8; -package Koha::Schema::Result::Printer; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::Printer - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("printers"); - -=head1 ACCESSORS - -=head2 printername - - data_type: 'varchar' - default_value: (empty string) - is_nullable: 0 - size: 40 - -=head2 printqueue - - data_type: 'varchar' - is_nullable: 1 - size: 20 - -=head2 printtype - - data_type: 'varchar' - is_nullable: 1 - size: 20 - -=cut - -__PACKAGE__->add_columns( - "printername", - { data_type => "varchar", default_value => "", is_nullable => 0, size => 40 }, - "printqueue", - { data_type => "varchar", is_nullable => 1, size => 20 }, - "printtype", - { data_type => "varchar", is_nullable => 1, size => 20 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("printername"); - - -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OaIxwtdwn0TJLggwOygC2w - - -# You can replace this text with custom content, and it will be preserved on regeneration -1; -- 2.39.5