Bug 38663: DBIC schema update
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
0fb5bc3e04
commit
cb89b42f81
1 changed files with 5 additions and 4 deletions
|
@ -41,8 +41,9 @@ foreign key references additional_fields(id)
|
|||
|
||||
=head2 record_id
|
||||
|
||||
data_type: 'integer'
|
||||
data_type: 'varchar'
|
||||
is_nullable: 0
|
||||
size: 11
|
||||
|
||||
record_id
|
||||
|
||||
|
@ -63,7 +64,7 @@ __PACKAGE__->add_columns(
|
|||
"field_id",
|
||||
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
|
||||
"record_id",
|
||||
{ data_type => "integer", is_nullable => 0 },
|
||||
{ data_type => "varchar", is_nullable => 0, size => 11 },
|
||||
"value",
|
||||
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
|
||||
);
|
||||
|
@ -98,8 +99,8 @@ __PACKAGE__->belongs_to(
|
|||
);
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-08-23 15:47:56
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0XP6wuopWZEao4nJd4PF5g
|
||||
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-03-11 13:19:15
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:577v+Jx91m0F2VhPy4+iRA
|
||||
|
||||
|
||||
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
||||
|
|
Loading…
Reference in a new issue