Bug 8798: (follow-up) update schema files
[koha.git] / Koha / Schema / Result / PluginData.pm
1 package Koha::Schema::Result::PluginData;
2
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
5
6 use strict;
7 use warnings;
8
9 use base 'DBIx::Class::Core';
10
11
12 =head1 NAME
13
14 Koha::Schema::Result::PluginData
15
16 =cut
17
18 __PACKAGE__->table("plugin_data");
19
20 =head1 ACCESSORS
21
22 =head2 plugin_class
23
24   data_type: 'varchar'
25   is_nullable: 0
26   size: 255
27
28 =head2 plugin_key
29
30   data_type: 'varchar'
31   is_nullable: 0
32   size: 255
33
34 =head2 plugin_value
35
36   data_type: 'text'
37   is_nullable: 1
38
39 =cut
40
41 __PACKAGE__->add_columns(
42   "plugin_class",
43   { data_type => "varchar", is_nullable => 0, size => 255 },
44   "plugin_key",
45   { data_type => "varchar", is_nullable => 0, size => 255 },
46   "plugin_value",
47   { data_type => "text", is_nullable => 1 },
48 );
49 __PACKAGE__->set_primary_key("plugin_class", "plugin_key");
50
51
52 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2013-06-18 13:13:57
53 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XC9EptLCJK8QWBHGy1TnPw
54
55
56 # You can replace this text with custom content, and it will be preserved on regeneration
57 1;