Skip to content

Commit 2bba2e0

Browse files
committed
Fix typo
1 parent 665627b commit 2bba2e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/migrate/20250218175247_add_display_type_to_sample_testdatum.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def plaintext_check(text)
1616

1717
class AddDisplayTypeToSampleTestdatum < ActiveRecord::Migration[7.0]
1818
def change
19-
#add_column :sample_testdata, :display_type, :integer, null: false, default: 0
19+
add_column :sample_testdata, :display_type, :integer, null: false, default: 0
2020
reversible do |dir|
2121
dir.up do
2222
tds = SampleTestdatum.all.filter {|x| plaintext_check(x.input) or plaintext_check(x.output)}.map(&:id)

0 commit comments

Comments
 (0)