defmodule Medicode.Repo.Migrations.AddTextVectorToTranscriptionChunks do use Ecto.Migration def change do # TODO: text_vector should be not nullable alter table(:transcription_chunks) do add :text_vector, :vector, size: 384, null: true end end end