20240310123453_add_hint_to_rules.rb 168 B

1234567
  1. # frozen_string_literal: true
  2. class AddHintToRules < ActiveRecord::Migration[7.1]
  3. def change
  4. add_column :rules, :hint, :text, null: false, default: ''
  5. end
  6. end