line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
60048
|
use utf8; |
|
13
|
|
|
|
|
62
|
|
|
13
|
|
|
|
|
112
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::Group; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::Group::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
|
|
715
|
use strict; |
|
13
|
|
|
|
|
27
|
|
|
13
|
|
|
|
|
472
|
|
9
|
13
|
|
|
13
|
|
73
|
use warnings; |
|
13
|
|
|
|
|
28
|
|
|
13
|
|
|
|
|
373
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
72
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
41
|
|
|
13
|
|
|
|
|
4568
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("groups"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"groupid", |
19
|
|
|
|
|
|
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"libraryid", |
21
|
|
|
|
|
|
|
{ data_type => "int", is_foreign_key => 1, is_nullable => 0 }, |
22
|
|
|
|
|
|
|
"name", |
23
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
24
|
|
|
|
|
|
|
"description", |
25
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
26
|
|
|
|
|
|
|
"editable", |
27
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 0 }, |
28
|
|
|
|
|
|
|
"fileseditable", |
29
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 0 }, |
30
|
|
|
|
|
|
|
); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("groupid"); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
__PACKAGE__->add_unique_constraint("libraryid_unique", ["libraryid"]); |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
40
|
|
|
|
|
|
|
"libraryid", |
41
|
|
|
|
|
|
|
"Biblio::Zotero::DB::Schema::Result::Library", |
42
|
|
|
|
|
|
|
{ libraryid => "libraryid" }, |
43
|
|
|
|
|
|
|
{ is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" }, |
44
|
|
|
|
|
|
|
); |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38 |
48
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rM5kHMX8OVtOSssn89CDlQ |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
52
|
|
|
|
|
|
|
1; |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
__END__ |