Bug 8798: DBIx::Class base classes for all Koha tables
[koha.git] / Koha / Schema / Result / ServicesThrottle.pm
1 package Koha::Schema::Result::ServicesThrottle;
2
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
5
6 use strict;
7 use warnings;
8
9 use base 'DBIx::Class::Core';
10
11
12 =head1 NAME
13
14 Koha::Schema::Result::ServicesThrottle
15
16 =cut
17
18 __PACKAGE__->table("services_throttle");
19
20 =head1 ACCESSORS
21
22 =head2 service_type
23
24   data_type: 'varchar'
25   default_value: (empty string)
26   is_nullable: 0
27   size: 10
28
29 =head2 service_count
30
31   data_type: 'varchar'
32   is_nullable: 1
33   size: 45
34
35 =cut
36
37 __PACKAGE__->add_columns(
38   "service_type",
39   { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
40   "service_count",
41   { data_type => "varchar", is_nullable => 1, size => 45 },
42 );
43 __PACKAGE__->set_primary_key("service_type");
44
45
46 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
47 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7zRTP55443DiLZKCWNjYug
48
49
50 # You can replace this text with custom content, and it will be preserved on regeneration
51 1;