Bug 8798: DBIx::Class base classes for all Koha tables
[koha.git] / Koha / Schema / Result / Stopword.pm
1 package Koha::Schema::Result::Stopword;
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::Stopword
15
16 =cut
17
18 __PACKAGE__->table("stopwords");
19
20 =head1 ACCESSORS
21
22 =head2 word
23
24   data_type: 'varchar'
25   is_nullable: 1
26   size: 255
27
28 =cut
29
30 __PACKAGE__->add_columns(
31   "word",
32   { data_type => "varchar", is_nullable => 1, size => 255 },
33 );
34
35
36 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
37 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0iOCRqsG2oTw6Djq2O/6+w
38
39
40 # You can replace this text with custom content, and it will be preserved on regeneration
41 1;