Files
codeocean/db/migrate/20211114145024_create_tips_intervention.rb
2021-11-23 01:38:10 +01:00

8 lines
175 B
Ruby

# frozen_string_literal: true
class CreateTipsIntervention < ActiveRecord::Migration[6.1]
def change
Intervention.find_or_create_by(name: 'TipsIntervention')
end
end