17 lines
469 B
Ruby
17 lines
469 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateGeminiTopicEmbeddingsTable < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :ai_topic_embeddings_5_1, id: false do |t|
|
|
t.integer :topic_id, null: false
|
|
t.integer :model_version, null: false
|
|
t.integer :strategy_version, null: false
|
|
t.text :digest, null: false
|
|
t.column :embeddings, "vector(768)", null: false
|
|
t.timestamps
|
|
|
|
t.index :topic_id, unique: true
|
|
end
|
|
end
|
|
end
|