Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / Deletedbiblio.pm
blob61adcd1dd2738fe1470d7158e8266fb8095377d3
1 use utf8;
2 package Koha::Schema::Result::Deletedbiblio;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Deletedbiblio
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<deletedbiblio>
20 =cut
22 __PACKAGE__->table("deletedbiblio");
24 =head1 ACCESSORS
26 =head2 biblionumber
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 frameworkcode
34 data_type: 'varchar'
35 default_value: (empty string)
36 is_nullable: 0
37 size: 4
39 =head2 author
41 data_type: 'mediumtext'
42 is_nullable: 1
44 =head2 title
46 data_type: 'mediumtext'
47 is_nullable: 1
49 =head2 unititle
51 data_type: 'mediumtext'
52 is_nullable: 1
54 =head2 notes
56 data_type: 'mediumtext'
57 is_nullable: 1
59 =head2 serial
61 data_type: 'tinyint'
62 is_nullable: 1
64 =head2 seriestitle
66 data_type: 'mediumtext'
67 is_nullable: 1
69 =head2 copyrightdate
71 data_type: 'smallint'
72 is_nullable: 1
74 =head2 timestamp
76 data_type: 'timestamp'
77 datetime_undef_if_invalid: 1
78 default_value: current_timestamp
79 is_nullable: 0
81 =head2 datecreated
83 data_type: 'date'
84 datetime_undef_if_invalid: 1
85 is_nullable: 0
87 =head2 abstract
89 data_type: 'mediumtext'
90 is_nullable: 1
92 =cut
94 __PACKAGE__->add_columns(
95 "biblionumber",
96 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
97 "frameworkcode",
98 { data_type => "varchar", default_value => "", is_nullable => 0, size => 4 },
99 "author",
100 { data_type => "mediumtext", is_nullable => 1 },
101 "title",
102 { data_type => "mediumtext", is_nullable => 1 },
103 "unititle",
104 { data_type => "mediumtext", is_nullable => 1 },
105 "notes",
106 { data_type => "mediumtext", is_nullable => 1 },
107 "serial",
108 { data_type => "tinyint", is_nullable => 1 },
109 "seriestitle",
110 { data_type => "mediumtext", is_nullable => 1 },
111 "copyrightdate",
112 { data_type => "smallint", is_nullable => 1 },
113 "timestamp",
115 data_type => "timestamp",
116 datetime_undef_if_invalid => 1,
117 default_value => \"current_timestamp",
118 is_nullable => 0,
120 "datecreated",
121 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 0 },
122 "abstract",
123 { data_type => "mediumtext", is_nullable => 1 },
126 =head1 PRIMARY KEY
128 =over 4
130 =item * L</biblionumber>
132 =back
134 =cut
136 __PACKAGE__->set_primary_key("biblionumber");
139 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
140 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T381rHb43DPfZ7+d/WuSxQ
143 # You can replace this text with custom content, and it will be preserved on regeneration