Skip to content

Commit

Permalink
Study class updated following a change in prod schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcam committed Aug 8, 2024
1 parent bc3bc1a commit d76c2af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
LIST OF CHANGES
---------------

- Study class updated following the addition of the
contaminated_human_data_access_group column to the study table.

release 6.32.0 (2024-07-25)
- add seq_product_irods_locations relationship to IseqProductMetric

Expand Down
12 changes: 10 additions & 2 deletions lib/WTSI/DNAP/Warehouse/Schema/Result/Study.pm
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,12 @@ The data destination type(s) for the study. It could be 'standard', '14mg' or 'g
is_nullable: 1
size: 255
=head2 contaminated_human_data_access_group
data_type: 'varchar'
is_nullable: 1
size: 255
=cut

__PACKAGE__->add_columns(
Expand Down Expand Up @@ -404,6 +410,8 @@ __PACKAGE__->add_columns(
{ data_type => 'varchar', is_nullable => 1, size => 255 },
'data_deletion_period',
{ data_type => 'varchar', is_nullable => 1, size => 255 },
'contaminated_human_data_access_group',
{ data_type => 'varchar', is_nullable => 1, size => 255 },
);

=head1 PRIMARY KEY
Expand Down Expand Up @@ -572,8 +580,8 @@ __PACKAGE__->has_many(
);


# Created by DBIx::Class::Schema::Loader v0.07051 @ 2023-02-23 11:12:46
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NrXlvzwGR2uLtnN+fJVHvw
# Created by DBIx::Class::Schema::Loader v0.07052 @ 2024-08-08 13:33:16
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cSZp6NXki9BI3+HAAlBY9w

with 'WTSI::DNAP::Warehouse::Schema::Query::LimsFlags';

Expand Down

0 comments on commit d76c2af

Please sign in to comment.