|
Lines 31-36
__PACKAGE__->table("tickets");
Link Here
|
| 31 |
|
31 |
|
| 32 |
primary key |
32 |
primary key |
| 33 |
|
33 |
|
|
|
34 |
=head2 source |
| 35 |
|
| 36 |
data_type: 'enum' |
| 37 |
default_value: 'catalog' |
| 38 |
extra: {list => ["catalog"]} |
| 39 |
is_nullable: 0 |
| 40 |
|
| 41 |
source of ticket |
| 42 |
|
| 34 |
=head2 reporter_id |
43 |
=head2 reporter_id |
| 35 |
|
44 |
|
| 36 |
data_type: 'integer' |
45 |
data_type: 'integer' |
|
Lines 92-97
id of biblio linked
Link Here
|
| 92 |
__PACKAGE__->add_columns( |
101 |
__PACKAGE__->add_columns( |
| 93 |
"id", |
102 |
"id", |
| 94 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
103 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
|
|
104 |
"source", |
| 105 |
{ |
| 106 |
data_type => "enum", |
| 107 |
default_value => "catalog", |
| 108 |
extra => { list => ["catalog"] }, |
| 109 |
is_nullable => 0, |
| 110 |
}, |
| 95 |
"reporter_id", |
111 |
"reporter_id", |
| 96 |
{ |
112 |
{ |
| 97 |
data_type => "integer", |
113 |
data_type => "integer", |
|
Lines 207-214
__PACKAGE__->has_many(
Link Here
|
| 207 |
); |
223 |
); |
| 208 |
|
224 |
|
| 209 |
|
225 |
|
| 210 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-24 21:15:34 |
226 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-20 14:44:11 |
| 211 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0Nm+y1BHJicrpeq3kuU1VA |
227 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GDz6OIQippcVcKESfzNbDg |
| 212 |
|
228 |
|
| 213 |
|
229 |
|
| 214 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
230 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
| 215 |
- |
|
|