Lines 43-49
foreign key references additional_fields(id)
Link Here
|
43 |
|
43 |
|
44 |
data_type: 'varchar' |
44 |
data_type: 'varchar' |
45 |
is_nullable: 0 |
45 |
is_nullable: 0 |
46 |
size: 11 |
46 |
size: 80 |
47 |
|
47 |
|
48 |
record_id |
48 |
record_id |
49 |
|
49 |
|
Lines 64-70
__PACKAGE__->add_columns(
Link Here
|
64 |
"field_id", |
64 |
"field_id", |
65 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
65 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
66 |
"record_id", |
66 |
"record_id", |
67 |
{ data_type => "varchar", is_nullable => 0, size => 11 }, |
67 |
{ data_type => "varchar", is_nullable => 0, size => 80 }, |
68 |
"value", |
68 |
"value", |
69 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, |
69 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, |
70 |
); |
70 |
); |
Lines 99-106
__PACKAGE__->belongs_to(
Link Here
|
99 |
); |
99 |
); |
100 |
|
100 |
|
101 |
|
101 |
|
102 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-12-10 14:31:11 |
102 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-20 12:01:26 |
103 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f/qqdCg8B+p8vgyF791lkQ |
103 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E284Z/ziQarAMj8eorMcWQ |
104 |
|
104 |
|
105 |
|
105 |
|
106 |
# 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 |
107 |
- |
|
|