Bug 21797: Update two-column templates with Bootstrap grid: Acquisitions part 5
[koha.git] / Koha / Schema / Result / PluginData.pm
blobf40a2f6f4a7f685384f33777a79f56b8b5dc1b6d
1 use utf8;
2 package Koha::Schema::Result::PluginData;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::PluginData
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<plugin_data>
20 =cut
22 __PACKAGE__->table("plugin_data");
24 =head1 ACCESSORS
26 =head2 plugin_class
28 data_type: 'varchar'
29 is_nullable: 0
30 size: 255
32 =head2 plugin_key
34 data_type: 'varchar'
35 is_nullable: 0
36 size: 255
38 =head2 plugin_value
40 data_type: 'mediumtext'
41 is_nullable: 1
43 =cut
45 __PACKAGE__->add_columns(
46 "plugin_class",
47 { data_type => "varchar", is_nullable => 0, size => 255 },
48 "plugin_key",
49 { data_type => "varchar", is_nullable => 0, size => 255 },
50 "plugin_value",
51 { data_type => "mediumtext", is_nullable => 1 },
54 =head1 PRIMARY KEY
56 =over 4
58 =item * L</plugin_class>
60 =item * L</plugin_key>
62 =back
64 =cut
66 __PACKAGE__->set_primary_key("plugin_class", "plugin_key");
69 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
70 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g4MbnMszG6BGSG0vHxWQig
73 # You can replace this text with custom content, and it will be preserved on regeneration