Bug 20589: DBRev 19.06.00.032
[koha.git] / Koha / Schema / Result / KeyboardShortcut.pm
1 use utf8;
2 package Koha::Schema::Result::KeyboardShortcut;
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::KeyboardShortcut
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<keyboard_shortcuts>
19
20 =cut
21
22 __PACKAGE__->table("keyboard_shortcuts");
23
24 =head1 ACCESSORS
25
26 =head2 shortcut_name
27
28   data_type: 'varchar'
29   is_nullable: 0
30   size: 80
31
32 =head2 shortcut_keys
33
34   data_type: 'varchar'
35   is_nullable: 0
36   size: 80
37
38 =cut
39
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 },
45 );
46
47 =head1 PRIMARY KEY
48
49 =over 4
50
51 =item * L</shortcut_name>
52
53 =back
54
55 =cut
56
57 __PACKAGE__->set_primary_key("shortcut_name");
58
59
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
62
63
64 # You can replace this text with custom code or comments, and it will be preserved on regeneration
65 1;