scinote-web/db/migrate/20230206095817_add_metadata_to_table.rb

8 lines
152 B
Ruby
Raw Normal View History

2023-02-06 19:55:02 +08:00
# frozen_string_literal: true
class AddMetadataToTable < ActiveRecord::Migration[6.1]
def change
add_column :tables, :metadata, :jsonb
end
end