mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-11 22:14:44 +00:00
11 lines
259 B
Ruby
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
|