discourse/db/migrate/20240517014119_add_target_t...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
192 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddTargetToProblemCheckTrackers < ActiveRecord::Migration[7.0]
def change
add_column :problem_check_trackers, :target, :string, null: true
end
end