use utf8;
package LPDB::Schema::Result::PathStat;

# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE

=head1 NAME

LPDB::Schema::Result::PathStat

=cut

use strict;
use warnings;

use base 'DBIx::Class::Core';
__PACKAGE__->table_class("DBIx::Class::ResultSource::View");

=head1 TABLE: C<PathStats>

=cut

__PACKAGE__->table("PathStats");

=head1 ACCESSORS

=head2 path_id

  data_type: 'integer'
  is_nullable: 1

=head2 files

  data_type: (empty string)
  is_nullable: 1

=head2 mintime

  data_type: (empty string)
  is_nullable: 1

=head2 maxtime

  data_type: (empty string)
  is_nullable: 1

=head2 totalbytes

  data_type: (empty string)
  is_nullable: 1

=head2 totalpixels

  data_type: (empty string)
  is_nullable: 1

=cut

__PACKAGE__->add_columns(
  "path_id",
  { data_type => "integer", is_nullable => 1 },
  "files",
  { data_type => "", is_nullable => 1 },
  "mintime",
  { data_type => "", is_nullable => 1 },
  "maxtime",
  { data_type => "", is_nullable => 1 },
  "totalbytes",
  { data_type => "", is_nullable => 1 },
  "totalpixels",
  { data_type => "", is_nullable => 1 },
);


# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-13 00:56:51
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:to/cop4ZbFN5zNfCPECNSQ


# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
