Skip to content

Commit

Permalink
add validated column to crispr es qc run
Browse files Browse the repository at this point in the history
  • Loading branch information
sajp committed Dec 1, 2014
1 parent 617ee34 commit 9bac7d8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/LIMS2/Model/Schema/Result/CrisprEsQcRuns.pm
Expand Up @@ -73,6 +73,12 @@ __PACKAGE__->table("crispr_es_qc_runs");
data_type: 'text'
is_nullable: 1
=head2 validated
data_type: 'boolean'
default_value: false
is_nullable: 1
=cut

__PACKAGE__->add_columns(
Expand All @@ -93,6 +99,8 @@ __PACKAGE__->add_columns(
{ data_type => "text", is_foreign_key => 1, is_nullable => 0 },
"sub_project",
{ data_type => "text", is_nullable => 1 },
"validated",
{ data_type => "boolean", default_value => \"false", is_nullable => 1 },
);

=head1 PRIMARY KEY
Expand Down Expand Up @@ -155,8 +163,8 @@ __PACKAGE__->belongs_to(
);


# Created by DBIx::Class::Schema::Loader v0.07022 @ 2014-04-16 16:43:15
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KStXhk631rbpalREDS3uoA
# Created by DBIx::Class::Schema::Loader v0.07022 @ 2014-12-01 11:39:17
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A7ZSinww6G/DqZs50j+0+w

sub as_hash {
my ( $self, $options ) = @_;
Expand Down

0 comments on commit 9bac7d8

Please sign in to comment.