discourse-ai/db/post_migrate/20250113171444_drop_old_embedding_tables.rb

11 lines
259 B
Ruby

# frozen_string_literal: true
class DropOldEmbeddingTables < ActiveRecord::Migration[7.2]
def up
# Copy rag embeddings created during deploy.
# noop. TODO(roman): Will follow-up with a new migration to drop these tables.
end
def down
end
end