Bug 21073: Add new table, schema and classes
[koha.git] / Koha / Schema / Result / PluginMethod.pm
bloba36cfb0ba08b0319c2d44c1ef76d7888ed7de920
1 use utf8;
2 package Koha::Schema::Result::PluginMethod;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::PluginMethod
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<plugin_methods>
20 =cut
22 __PACKAGE__->table("plugin_methods");
24 =head1 ACCESSORS
26 =head2 plugin_class
28 data_type: 'varchar'
29 is_nullable: 0
30 size: 255
32 =head2 plugin_method
34 data_type: 'varchar'
35 is_nullable: 0
36 size: 255
38 =cut
40 __PACKAGE__->add_columns(
41 "plugin_class",
42 { data_type => "varchar", is_nullable => 0, size => 255 },
43 "plugin_method",
44 { data_type => "varchar", is_nullable => 0, size => 255 },
47 =head1 PRIMARY KEY
49 =over 4
51 =item * L</plugin_class>
53 =item * L</plugin_method>
55 =back
57 =cut
59 __PACKAGE__->set_primary_key("plugin_class", "plugin_method");
62 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-07-13 12:37:57
63 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:koGk3Dh0wkslqYPUqUcK0w
66 # You can replace this text with custom code or comments, and it will be preserved on regeneration