Skip to content

Commit 9619a94

Browse files
committed
remove tag_sequence limit restriction
1 parent 43f9e29 commit 9619a94

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

db/schema.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema[7.2].define(version: 2025_10_23_142000) do
13+
ActiveRecord::Schema[7.2].define(version: 2026_02_20_113917) do
1414
create_table "aliquot", charset: "utf8mb3", collation: "utf8mb3_unicode_ci", force: :cascade do |t|
1515
t.string "id_lims", null: false, comment: "The LIMS system that the aliquot was created in"
1616
t.string "aliquot_uuid", null: false, comment: "The UUID of the aliquot in the LIMS system"
@@ -68,8 +68,8 @@
6868
t.string "id_lims", limit: 10, null: false, comment: "LIM system identifier, e.g. CLARITY-GCLP, SEQSCAPE"
6969
t.integer "lane", limit: 2, null: false, comment: "Flowcell lane number, 1 or 2", unsigned: true
7070
t.string "entity_type", limit: 30, null: false, comment: "Library type: library_indexed, library_indexed_spike"
71-
t.string "tag_sequence", limit: 30, comment: "Tag sequence"
72-
t.string "tag2_sequence", limit: 30, comment: "Tag sequence for tag 2"
71+
t.string "tag_sequence", comment: "Tag sequence"
72+
t.string "tag2_sequence", comment: "Tag sequence for tag 2"
7373
t.string "pipeline_id_lims", limit: 60, comment: "LIMs-specific pipeline identifier that unambiguously defines library type"
7474
t.string "bait_name", limit: 50, comment: "WTSI-wide name that uniquely identifies a bait set"
7575
t.integer "requested_insert_size_from", comment: "Requested insert size min value", unsigned: true
@@ -124,11 +124,11 @@
124124
t.string "entity_type", limit: 30, null: false, comment: "Lane type: library, library_control, library_indexed, library_indexed_spike"
125125
t.string "entity_id_lims", limit: 20, null: false, comment: "Most specific LIMs identifier associated with this lane or plex or spike"
126126
t.integer "tag_index", limit: 2, comment: "Tag index, NULL if lane is not a pool", unsigned: true
127-
t.string "tag_sequence", limit: 30, comment: "Tag sequence"
127+
t.string "tag_sequence", comment: "Tag sequence"
128128
t.string "tag_set_id_lims", limit: 20, comment: "LIMs-specific identifier of the tag set"
129129
t.string "tag_set_name", limit: 100, comment: "WTSI-wide tag set name"
130130
t.string "tag_identifier", limit: 30, comment: "The position of tag within the tag group"
131-
t.string "tag2_sequence", limit: 30, comment: "Tag sequence for tag 2"
131+
t.string "tag2_sequence", comment: "Tag sequence for tag 2"
132132
t.string "tag2_set_id_lims", limit: 20, comment: "LIMs-specific identifier of the tag set for tag 2"
133133
t.string "tag2_set_name", limit: 100, comment: "WTSI-wide tag set name for tag 2"
134134
t.string "tag2_identifier", limit: 30, comment: "The position of tag2 within the tag group"
@@ -534,7 +534,7 @@
534534
t.string "id_lims", limit: 10, null: false, comment: "LIM system identifier, e.g. CLARITY-GCLP, SEQSCAPE"
535535
t.integer "request_order", limit: 2, null: false, comment: "LIMs-specific identifier for order in a batch", unsigned: true
536536
t.string "entity_type", limit: 30, null: false, comment: "Entity type, e.g. library_indexed or in the future some other library type"
537-
t.string "tag_sequence", limit: 30, comment: "Tag sequence"
537+
t.string "tag_sequence", comment: "Tag sequence"
538538
t.string "pipeline_id_lims", limit: 60, comment: "LIMs-specific pipeline identifier that unambiguously defines library type"
539539
t.string "bait_name", limit: 50, comment: "WTSI-wide name that uniquely identifies a bait set"
540540
t.integer "requested_insert_size_from", comment: "Requested insert size min value", unsigned: true

0 commit comments

Comments
 (0)