__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 },
);
1;