mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-08 22:24:23 +08:00
7 lines
160 B
Ruby
7 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddMetadataToMyModules < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :my_modules, :metadata, :jsonb
|
|
end
|
|
end
|