mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-14 00:54:32 +08:00
7 lines
163 B
Ruby
7 lines
163 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddMetadataToExperiments < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :experiments, :metadata, :jsonb
|
|
end
|
|
end
|