class CreateChunks < ActiveRecord::Migration[7.0]
  def change
    create_table :chunks do |t|
      t.references :chunkable, polymorphic: true, null: false
      t.text :content # The actual text content of this chunk
      t.vector :embedding, limit: 3072
      t.integer :chunk_index, null: false
      t.timestamps
    end
  end
end
