From 7f87270c01ff832ac1de81db6ebe8a89e0224b12 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 26 Sep 2018 12:10:01 +0000 Subject: [PATCH] Bug 21411: DO NOT PUSH - Schema changes --- Koha/Schema/Result/KeyboardShortcut.pm | 81 ++++++++++++++++++++++++++++++++++ 1 file changed, 81 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 0000000..2d816f1 --- /dev/null +++ b/Koha/Schema/Result/KeyboardShortcut.pm @@ -0,0 +1,81 @@ +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 + +=cut + +__PACKAGE__->table("keyboard_shortcuts"); + +=head1 ACCESSORS + +=head2 id + + data_type: 'integer' + is_auto_increment: 1 + is_nullable: 0 + +=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( + "id", + { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, + "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 + +=back + +=cut + +__PACKAGE__->set_primary_key("id"); + + +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 10:46:21 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YqTiGtKaos4KN7tYqHCfSw + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; -- 2.1.4