class CreateGsds < ActiveRecord::Migration[7.0]
  def change
    create_table :gsds do |t|
      t.string :gsd_id
      t.index :gsd_id, unique: true
      t.string :cve_id
      t.jsonb :gsd
      t.jsonb :namespaces
      t.timestamps
    end
  end
end