The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test2::Harness::UI::Schema::Result::Run

COMPONENTS LOADED

TABLE: runs

ACCESSORS

run_id

  data_type: 'uuid'
  default_value: uuid_generate_v4()
  is_nullable: 0
  size: 16

user_id

  data_type: 'uuid'
  is_foreign_key: 1
  is_nullable: 0
  size: 16

status

  data_type: 'enum'
  default_value: 'pending'
  extra: {custom_type_name => "queue_status",list => ["pending","running","complete","broken"]}
  is_nullable: 0

error

  data_type: 'text'
  is_nullable: 1

project_id

  data_type: 'uuid'
  is_foreign_key: 1
  is_nullable: 0
  size: 16

pinned

  data_type: 'boolean'
  default_value: false
  is_nullable: 0

version

  data_type: 'citext'
  is_nullable: 1

tier

  data_type: 'citext'
  is_nullable: 1

category

  data_type: 'citext'
  is_nullable: 1

build

  data_type: 'citext'
  is_nullable: 1

added

  data_type: 'timestamp'
  default_value: current_timestamp
  is_nullable: 0
  original: {default_value => \"now()"}

mode

  data_type: 'enum'
  default_value: 'qvfd'
  extra: {custom_type_name => "run_modes",list => ["summary","qvfd","qvf","complete"]}
  is_nullable: 0

log_file_id

  data_type: 'uuid'
  is_foreign_key: 1
  is_nullable: 1
  size: 16

passed

  data_type: 'integer'
  is_nullable: 1

failed

  data_type: 'integer'
  is_nullable: 1

retried

  data_type: 'integer'
  is_nullable: 1

parameters

  data_type: 'jsonb'
  is_nullable: 1

PRIMARY KEY

RELATIONS

jobs

Type: has_many

Related object: Test2::Harness::UI::Schema::Result::Job

log_file

Type: belongs_to

Related object: Test2::Harness::UI::Schema::Result::LogFile

project

Type: belongs_to

Related object: Test2::Harness::UI::Schema::Result::Project

user

Type: belongs_to

Related object: Test2::Harness::UI::Schema::Result::User

METHODS

SOURCE

The source code repository for Test2-Harness-UI can be found at http://github.com/Test-More/Test2-Harness-UI/.

MAINTAINERS

Chad Granum <exodist@cpan.org>

AUTHORS

Chad Granum <exodist@cpan.org>

COPYRIGHT

Copyright 2019 Chad Granum <exodist7@gmail.com>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://dev.perl.org/licenses/