line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
11558
|
use utf8; |
|
13
|
|
|
|
|
30
|
|
|
13
|
|
|
|
|
173
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::FieldsCombined; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::FieldsCombined::VERSION = '0.003'; |
4
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader |
5
|
|
|
|
|
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
|
8
|
13
|
|
|
13
|
|
701
|
use strict; |
|
13
|
|
|
|
|
30
|
|
|
13
|
|
|
|
|
373
|
|
9
|
13
|
|
|
13
|
|
71
|
use warnings; |
|
13
|
|
|
|
|
35
|
|
|
13
|
|
|
|
|
1318
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
71
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
34
|
|
|
13
|
|
|
|
|
2581
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("fieldsCombined"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"fieldid", |
19
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"fieldname", |
21
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
22
|
|
|
|
|
|
|
"label", |
23
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 1 }, |
24
|
|
|
|
|
|
|
"fieldformatid", |
25
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
26
|
|
|
|
|
|
|
"custom", |
27
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 0 }, |
28
|
|
|
|
|
|
|
); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("fieldid"); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38 |
35
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZI65ORMoLc5DQXZVcha8hw |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
39
|
|
|
|
|
|
|
1; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
__END__ |