scinote-web/db/migrate/20250410115032_add_metadata_to_experiments.rb

7 lines
163 B
Ruby

# frozen_string_literal: true
class AddMetadataToExperiments < ActiveRecord::Migration[7.0]
def change
add_column :experiments, :metadata, :jsonb
end
end