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