-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #547 from sanger/develop
Develop to master
- Loading branch information
Showing
5 changed files
with
47 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.17.1 | ||
1.17.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# frozen_string_literal: true | ||
|
||
# Adding priority_level e.g. Medium, High etc to receive this information | ||
# in a sample message from TOL through traction qc_receptions endpoint | ||
class AddPriorityLevelToSample < ActiveRecord::Migration[7.0] | ||
def change | ||
change_table :sample, bulk: true do |t| | ||
t.string :priority_level, comment: 'Priority level e.g. Medium, High etc' | ||
end | ||
end | ||
end |
8 changes: 8 additions & 0 deletions
8
db/migrate/20230816092204_add_index_long_read_qc_results_sample_id.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
# Add index on sample id for long read qc results to be able to join with samples | ||
class AddIndexLongReadQcResultsSampleId < ActiveRecord::Migration[7.0] | ||
def change | ||
add_index :long_read_qc_result, :sample_id, unique: false | ||
end | ||
end |
8 changes: 8 additions & 0 deletions
8
db/migrate/20230816100140_add_index_long_read_qc_results_assay_type_key.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
# Index to query long_read_qc_results using assay_type_key | ||
class AddIndexLongReadQcResultsAssayTypeKey < ActiveRecord::Migration[7.0] | ||
def change | ||
add_index :long_read_qc_result, :assay_type_key, unique: false | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters