Lines 46-51
__PACKAGE__->table("biblio");
Link Here
|
46 |
data_type: 'longtext' |
46 |
data_type: 'longtext' |
47 |
is_nullable: 1 |
47 |
is_nullable: 1 |
48 |
|
48 |
|
|
|
49 |
=head2 medium |
50 |
|
51 |
data_type: 'longtext' |
52 |
is_nullable: 1 |
53 |
|
54 |
=head2 subtitle |
55 |
|
56 |
data_type: 'longtext' |
57 |
is_nullable: 1 |
58 |
|
59 |
=head2 part_number |
60 |
|
61 |
data_type: 'longtext' |
62 |
is_nullable: 1 |
63 |
|
64 |
=head2 part_name |
65 |
|
66 |
data_type: 'longtext' |
67 |
is_nullable: 1 |
68 |
|
49 |
=head2 unititle |
69 |
=head2 unititle |
50 |
|
70 |
|
51 |
data_type: 'longtext' |
71 |
data_type: 'longtext' |
Lines 75-81
__PACKAGE__->table("biblio");
Link Here
|
75 |
|
95 |
|
76 |
data_type: 'timestamp' |
96 |
data_type: 'timestamp' |
77 |
datetime_undef_if_invalid: 1 |
97 |
datetime_undef_if_invalid: 1 |
78 |
default_value: current_timestamp |
98 |
default_value: 'current_timestamp()' |
79 |
is_nullable: 0 |
99 |
is_nullable: 0 |
80 |
|
100 |
|
81 |
=head2 datecreated |
101 |
=head2 datecreated |
Lines 100-105
__PACKAGE__->add_columns(
Link Here
|
100 |
{ data_type => "longtext", is_nullable => 1 }, |
120 |
{ data_type => "longtext", is_nullable => 1 }, |
101 |
"title", |
121 |
"title", |
102 |
{ data_type => "longtext", is_nullable => 1 }, |
122 |
{ data_type => "longtext", is_nullable => 1 }, |
|
|
123 |
"medium", |
124 |
{ data_type => "longtext", is_nullable => 1 }, |
125 |
"subtitle", |
126 |
{ data_type => "longtext", is_nullable => 1 }, |
127 |
"part_number", |
128 |
{ data_type => "longtext", is_nullable => 1 }, |
129 |
"part_name", |
130 |
{ data_type => "longtext", is_nullable => 1 }, |
103 |
"unititle", |
131 |
"unititle", |
104 |
{ data_type => "longtext", is_nullable => 1 }, |
132 |
{ data_type => "longtext", is_nullable => 1 }, |
105 |
"notes", |
133 |
"notes", |
Lines 114-120
__PACKAGE__->add_columns(
Link Here
|
114 |
{ |
142 |
{ |
115 |
data_type => "timestamp", |
143 |
data_type => "timestamp", |
116 |
datetime_undef_if_invalid => 1, |
144 |
datetime_undef_if_invalid => 1, |
117 |
default_value => \"current_timestamp", |
145 |
default_value => "current_timestamp()", |
118 |
is_nullable => 0, |
146 |
is_nullable => 0, |
119 |
}, |
147 |
}, |
120 |
"datecreated", |
148 |
"datecreated", |
Lines 363-370
__PACKAGE__->has_many(
Link Here
|
363 |
); |
391 |
); |
364 |
|
392 |
|
365 |
|
393 |
|
366 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-11 12:56:41 |
394 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2019-03-15 16:45:45 |
367 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ebn7Szfm8/HbrdAc7ekTnA |
395 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:61+Di/Fke60nCaASGeXbvw |
|
|
396 |
|
368 |
|
397 |
|
369 |
__PACKAGE__->has_one( |
398 |
__PACKAGE__->has_one( |
370 |
"metadata", |
399 |
"metadata", |