Bugzilla – Attachment 44394 Details for
Bug 11431
Custom notification sounds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11431 [3] - Update schema
Bug-11431-3---Update-schema.patch (text/plain), 2.13 KB, created by
Kyle M Hall (khall)
on 2015-11-04 15:15:26 UTC
(
hide
)
Description:
Bug 11431 [3] - Update schema
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2015-11-04 15:15:26 UTC
Size:
2.13 KB
patch
obsolete
>From 55a6ca0e89160de8ac352cb55e01fbddda801046 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 22 Dec 2014 05:58:09 -0500 >Subject: [PATCH] Bug 11431 [3] - Update schema > >Signed-off-by: Nick Clemens <nick@quecheelibrary.org> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > Koha/Schema/Result/AudioAlert.pm | 81 ++++++++++++++++++++++++++++++++++++++ > 1 files changed, 81 insertions(+), 0 deletions(-) > create mode 100644 Koha/Schema/Result/AudioAlert.pm > >diff --git a/Koha/Schema/Result/AudioAlert.pm b/Koha/Schema/Result/AudioAlert.pm >new file mode 100644 >index 0000000..696040b >--- /dev/null >+++ b/Koha/Schema/Result/AudioAlert.pm >@@ -0,0 +1,81 @@ >+use utf8; >+package Koha::Schema::Result::AudioAlert; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::AudioAlert >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<audio_alerts> >+ >+=cut >+ >+__PACKAGE__->table("audio_alerts"); >+ >+=head1 ACCESSORS >+ >+=head2 audio_alert_id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+=head2 precedence >+ >+ data_type: 'smallint' >+ extra: {unsigned => 1} >+ is_nullable: 0 >+ >+=head2 selector >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 255 >+ >+=head2 sound >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 255 >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "audio_alert_id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "precedence", >+ { data_type => "smallint", extra => { unsigned => 1 }, is_nullable => 0 }, >+ "selector", >+ { data_type => "varchar", is_nullable => 0, size => 255 }, >+ "sound", >+ { data_type => "varchar", is_nullable => 0, size => 255 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</audio_alert_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("audio_alert_id"); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-12-22 01:04:21 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yIXpJMcpovBDl3bBVrwLqg >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11431
:
29030
|
29031
|
29032
|
29033
|
29034
|
29035
|
29036
|
29037
|
29038
|
29039
|
29119
|
29120
|
29404
|
29764
|
29765
|
29766
|
29767
|
29768
|
29769
|
31145
|
31146
|
31147
|
31148
|
31149
|
31150
|
34637
|
34638
|
34639
|
34640
|
34641
|
34642
|
34643
|
34644
|
34645
|
34646
|
34647
|
34648
|
34649
|
34650
|
34651
|
34652
|
34653
|
34717
|
34718
|
34719
|
34720
|
34864
|
34865
|
34866
|
34867
|
35843
|
35844
|
35845
|
35846
|
38547
|
38548
|
40726
|
40727
|
40728
|
40729
|
40730
|
40731
|
40732
|
41634
|
41661
|
41662
|
42678
|
42679
|
42680
|
42681
|
42682
|
42683
|
42684
|
42685
|
42686
|
42687
|
42688
|
42689
|
42696
|
43753
|
43754
|
43755
|
43756
|
43757
|
43758
|
43759
|
43760
|
43761
|
43762
|
43763
|
43764
|
43765
|
43817
|
43820
|
43821
|
43822
|
43823
|
43824
|
43825
|
43887
|
43888
|
43889
|
43890
|
43891
|
43892
|
43893
|
43894
|
43895
|
43896
|
43897
|
43898
|
43899
|
43900
|
43901
|
43902
|
43903
|
44391
|
44392
|
44393
| 44394 |
44395
|
44396
|
44397
|
44398
|
44399
|
44400
|
44401
|
44402
|
44404
|
44405
|
44407
|
44408
|
44409
|
44411
|
44412
|
44599
|
45135