scinote-web/db/migrate/20230206095817_add_metadata_to_table.rb
2023-02-06 14:21:55 +01:00

8 lines
152 B
Ruby

# frozen_string_literal: true
class AddMetadataToTable < ActiveRecord::Migration[6.1]
def change
add_column :tables, :metadata, :jsonb
end
end