Bug 21395: Fix creation of PO file
[koha.git] / Koha / Schema / Result / AudioAlert.pm
blob24b2927a7f74ddf0be997ead545e2b379d66dea5
1 use utf8;
2 package Koha::Schema::Result::AudioAlert;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::AudioAlert
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<audio_alerts>
20 =cut
22 __PACKAGE__->table("audio_alerts");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 precedence
34 data_type: 'smallint'
35 extra: {unsigned => 1}
36 is_nullable: 0
38 =head2 selector
40 data_type: 'varchar'
41 is_nullable: 0
42 size: 255
44 =head2 sound
46 data_type: 'varchar'
47 is_nullable: 0
48 size: 255
50 =cut
52 __PACKAGE__->add_columns(
53 "id",
54 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
55 "precedence",
56 { data_type => "smallint", extra => { unsigned => 1 }, is_nullable => 0 },
57 "selector",
58 { data_type => "varchar", is_nullable => 0, size => 255 },
59 "sound",
60 { data_type => "varchar", is_nullable => 0, size => 255 },
63 =head1 PRIMARY KEY
65 =over 4
67 =item * L</id>
69 =back
71 =cut
73 __PACKAGE__->set_primary_key("id");
76 # Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-08-19 08:01:06
77 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lPTnmrJd5V/X9fLebC8FHA
80 # You can replace this text with custom code or comments, and it will be preserved on regeneration