1use utf8;
2package Test2::Harness::UI::Schema::Result::LogFile;
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7use strict;
8use warnings;
9
10use base 'DBIx::Class::Core';
11__PACKAGE__->load_components(
12  "InflateColumn::DateTime",
13  "InflateColumn::Serializer",
14  "InflateColumn::Serializer::JSON",
15  "Tree::AdjacencyList",
16  "UUIDColumns",
17);
18__PACKAGE__->table("log_files");
19__PACKAGE__->add_columns(
20  "log_file_id",
21  { data_type => "char", is_nullable => 0, size => 36 },
22  "name",
23  { data_type => "text", is_nullable => 0 },
24  "local_file",
25  { data_type => "text", is_nullable => 1 },
26  "data",
27  { data_type => "longblob", is_nullable => 1 },
28);
29__PACKAGE__->set_primary_key("log_file_id");
30__PACKAGE__->has_many(
31  "runs",
32  "Test2::Harness::UI::Schema::Result::Run",
33  { "foreign.log_file_id" => "self.log_file_id" },
34  { cascade_copy => 0, cascade_delete => 0 },
35);
36
37
38# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-26 13:48:31
39# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VGg5t3sq8HkNzTqTHEm3Gw
40
41
42# You can replace this text with custom code or comments, and it will be preserved on regeneration
431;
44