2
0

Add hints for rules (#29539)

This commit is contained in:
Eugen Rochko
2024-03-11 09:57:07 +01:00
committed by GitHub
parent 98ef38e34e
commit 5b3a8737d6
11 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddHintToRules < ActiveRecord::Migration[7.1]
def change
add_column :rules, :hint, :text, null: false, default: ''
end
end