demarches-normaliennes/db/migrate/20230525130349_add_sva_svr_to_procedures.rb

8 lines
184 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2023-05-25 19:06:43 +02:00
class AddSVASVRToProcedures < ActiveRecord::Migration[7.0]
def change
add_column :procedures, :sva_svr, :jsonb, default: {}, null: false
end
end