Bug 23753: Add missing humanMsg library to pages using background job JavaScript
[koha.git] / Koha / Schema / Result / KeyboardShortcut.pm
blob7601e6f0a219e75ef62a5c8c8831882d20a5772c
1 use utf8;
2 package Koha::Schema::Result::KeyboardShortcut;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::KeyboardShortcut
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<keyboard_shortcuts>
20 =cut
22 __PACKAGE__->table("keyboard_shortcuts");
24 =head1 ACCESSORS
26 =head2 shortcut_name
28 data_type: 'varchar'
29 is_nullable: 0
30 size: 80
32 =head2 shortcut_keys
34 data_type: 'varchar'
35 is_nullable: 0
36 size: 80
38 =cut
40 __PACKAGE__->add_columns(
41 "shortcut_name",
42 { data_type => "varchar", is_nullable => 0, size => 80 },
43 "shortcut_keys",
44 { data_type => "varchar", is_nullable => 0, size => 80 },
47 =head1 PRIMARY KEY
49 =over 4
51 =item * L</shortcut_name>
53 =back
55 =cut
57 __PACKAGE__->set_primary_key("shortcut_name");
60 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-05-10 19:02:44
61 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pnxutghDJLyCGVkChuk2rQ
64 # You can replace this text with custom code or comments, and it will be preserved on regeneration