View | Details | Raw Unified | Return to bug 11431
Collapse All | Expand All

(-)a/Koha/Schema/Result/AudioAlert.pm (-1 / +81 lines)
Line 0 Link Here
0
- 
1
use utf8;
2
package Koha::Schema::Result::AudioAlert;
3
4
# Created by DBIx::Class::Schema::Loader
5
# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7
=head1 NAME
8
9
Koha::Schema::Result::AudioAlert
10
11
=cut
12
13
use strict;
14
use warnings;
15
16
use base 'DBIx::Class::Core';
17
18
=head1 TABLE: C<audio_alerts>
19
20
=cut
21
22
__PACKAGE__->table("audio_alerts");
23
24
=head1 ACCESSORS
25
26
=head2 audio_alert_id
27
28
  data_type: 'integer'
29
  is_auto_increment: 1
30
  is_nullable: 0
31
32
=head2 precedence
33
34
  data_type: 'smallint'
35
  extra: {unsigned => 1}
36
  is_nullable: 0
37
38
=head2 selector
39
40
  data_type: 'varchar'
41
  is_nullable: 0
42
  size: 255
43
44
=head2 sound
45
46
  data_type: 'varchar'
47
  is_nullable: 0
48
  size: 255
49
50
=cut
51
52
__PACKAGE__->add_columns(
53
  "audio_alert_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 },
61
);
62
63
=head1 PRIMARY KEY
64
65
=over 4
66
67
=item * L</audio_alert_id>
68
69
=back
70
71
=cut
72
73
__PACKAGE__->set_primary_key("audio_alert_id");
74
75
76
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-12-22 01:04:21
77
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yIXpJMcpovBDl3bBVrwLqg
78
79
80
# You can replace this text with custom code or comments, and it will be preserved on regeneration
81
1;

Return to bug 11431