View | Details | Raw Unified | Return to bug 38663
Collapse All | Expand All

(-)a/Koha/Schema/Result/AdditionalFieldValue.pm (-5 / +5 lines)
Lines 41-48 foreign key references additional_fields(id) Link Here
41
41
42
=head2 record_id
42
=head2 record_id
43
43
44
  data_type: 'integer'
44
  data_type: 'varchar'
45
  is_nullable: 0
45
  is_nullable: 0
46
  size: 11
46
47
47
record_id
48
record_id
48
49
Lines 63-69 __PACKAGE__->add_columns( Link Here
63
  "field_id",
64
  "field_id",
64
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
65
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
65
  "record_id",
66
  "record_id",
66
  { data_type => "integer", is_nullable => 0 },
67
  { data_type => "varchar", is_nullable => 0, size => 11 },
67
  "value",
68
  "value",
68
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
69
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
69
);
70
);
Lines 98-105 __PACKAGE__->belongs_to( Link Here
98
);
99
);
99
100
100
101
101
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-08-23 15:47:56
102
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-12-10 14:31:11
102
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0XP6wuopWZEao4nJd4PF5g
103
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f/qqdCg8B+p8vgyF791lkQ
103
104
104
105
105
# You can replace this text with custom code or comments, and it will be preserved on regeneration
106
# You can replace this text with custom code or comments, and it will be preserved on regeneration
106
- 

Return to bug 38663