Bugzilla – Attachment 86013 Details for
Bug 21411
Advanced cataloging editor - rancor - Allow configuration of Keyboard shortcuts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21411: DO NOT PUSH - Schema changes
Bug-21411-DO-NOT-PUSH---Schema-changes.patch (text/plain), 1.88 KB, created by
Nick Clemens (kidclamp)
on 2019-03-04 16:24:16 UTC
(
hide
)
Description:
Bug 21411: DO NOT PUSH - Schema changes
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2019-03-04 16:24:16 UTC
Size:
1.88 KB
patch
obsolete
>From f7094186500f3fca07e82e7d4daa4dcf0db4155e Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Mon, 4 Mar 2019 11:23:41 -0500 >Subject: [PATCH] Bug 21411: DO NOT PUSH - Schema changes > >--- > Koha/Schema/Result/KeyboardShortcut.pm | 73 ++++++++++++++++++++++++++++++++++ > 1 file changed, 73 insertions(+) > create mode 100644 Koha/Schema/Result/KeyboardShortcut.pm > >diff --git a/Koha/Schema/Result/KeyboardShortcut.pm b/Koha/Schema/Result/KeyboardShortcut.pm >new file mode 100644 >index 0000000000..8057b87ed7 >--- /dev/null >+++ b/Koha/Schema/Result/KeyboardShortcut.pm >@@ -0,0 +1,73 @@ >+use utf8; >+package Koha::Schema::Result::KeyboardShortcut; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::KeyboardShortcut >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<keyboard_shortcuts> >+ >+=cut >+ >+__PACKAGE__->table("keyboard_shortcuts"); >+ >+=head1 ACCESSORS >+ >+=head2 shortcut_name >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 80 >+ >+=head2 shortcut_keys >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 80 >+ >+=head2 shortcut_desc >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 200 >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "shortcut_name", >+ { data_type => "varchar", is_nullable => 0, size => 80 }, >+ "shortcut_keys", >+ { data_type => "varchar", is_nullable => 0, size => 80 }, >+ "shortcut_desc", >+ { data_type => "varchar", is_nullable => 0, size => 200 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</shortcut_name> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("shortcut_name"); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-02-20 17:08:14 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Kb/NOIR/EsoQkFNvO8rELA >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >-- >2.11.0
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 21411
:
79408
|
79409
|
85365
|
85366
|
85397
|
85398
|
86012
|
86013
|
86014
|
86018
|
86019
|
86020
|
88465
|
88466
|
88467
|
88468
|
89119
|
89179
|
89416
|
89417
|
89418
|
89419
|
89420
|
89421