Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pull from devel to master to create release 6.33.0 #236

Merged
merged 3 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
LIST OF CHANGES
---------------

release 6.33.0 (2024-08-30)
- 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
Loading