Bug 38663: DBIC schema update

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Katrin Fischer 2025-03-11 13:30:23 +00:00
parent 0fb5bc3e04
commit cb89b42f81
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -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