Bug 17845: (RM follow-up) Remove Printer DBIC Class
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
6653a24148
commit
52db77b93e
1 changed files with 0 additions and 74 deletions
|
@ -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<printers>
|
||||
|
||||
=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</printername>
|
||||
|
||||
=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;
|
Loading…
Reference in a new issue