Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / Printer.pm
blob7386f2a525eb99278bf6579630145d89f19bb760
1 use utf8;
2 package Koha::Schema::Result::Printer;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Printer
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<printers>
20 =cut
22 __PACKAGE__->table("printers");
24 =head1 ACCESSORS
26 =head2 printername
28 data_type: 'varchar'
29 default_value: (empty string)
30 is_nullable: 0
31 size: 40
33 =head2 printqueue
35 data_type: 'varchar'
36 is_nullable: 1
37 size: 20
39 =head2 printtype
41 data_type: 'varchar'
42 is_nullable: 1
43 size: 20
45 =cut
47 __PACKAGE__->add_columns(
48 "printername",
49 { data_type => "varchar", default_value => "", is_nullable => 0, size => 40 },
50 "printqueue",
51 { data_type => "varchar", is_nullable => 1, size => 20 },
52 "printtype",
53 { data_type => "varchar", is_nullable => 1, size => 20 },
56 =head1 PRIMARY KEY
58 =over 4
60 =item * L</printername>
62 =back
64 =cut
66 __PACKAGE__->set_primary_key("printername");
69 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
70 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OaIxwtdwn0TJLggwOygC2w
73 # You can replace this text with custom content, and it will be preserved on regeneration