Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

use utf8;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
__PACKAGE__->load_components(
"InflateColumn::DateTime",
"InflateColumn::Serializer",
"InflateColumn::Serializer::JSON",
"Tree::AdjacencyList",
"UUIDColumns",
);
__PACKAGE__->table("log_files");
__PACKAGE__->add_columns(
"log_file_id",
{ data_type => "char", is_nullable => 0, size => 36 },
"name",
{ data_type => "text", is_nullable => 0 },
"local_file",
{ data_type => "text", is_nullable => 1 },
"data",
{ data_type => "longblob", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("log_file_id");
__PACKAGE__->has_many(
"runs",
"Test2::Harness::UI::Schema::Result::Run",
{ "foreign.log_file_id" => "self.log_file_id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-07 16:22:57
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5Wud/4O+s0C4v5T+m+ZLbA
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;