1 package SGN
::Schema
::QcReport
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("qc_report");
10 __PACKAGE__
->add_columns(
13 data_type
=> "integer",
14 default_value
=> "nextval('qc_report_qc_id_seq'::regclass)",
15 is_auto_increment
=> 1,
21 data_type
=> "integer",
29 data_type
=> "character varying",
30 default_value
=> undef,
35 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
37 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
39 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
41 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
43 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
45 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
47 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
49 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
51 { data_type
=> "real", default_value
=> undef, is_nullable
=> 1, size
=> 4 },
53 { data_type
=> "real", default_value
=> undef, is_nullable
=> 1, size
=> 4 },
54 "quality_trim_threshold",
55 { data_type
=> "real", default_value
=> undef, is_nullable
=> 1, size
=> 4 },
59 default_value
=> undef,
64 __PACKAGE__
->set_primary_key("qc_id");
65 __PACKAGE__
->add_unique_constraint("qc_report_est_id_key", ["est_id"]);
66 __PACKAGE__
->belongs_to("est", "SGN::Schema::Est", { est_id
=> "est_id" });
69 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
70 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:U4A2xfcDZEcs8fJNhex8yg
73 # You can replace this text with custom content, and it will be preserved on regeneration