Packages

BEAM-native coding agent substrate for Elixir/OTP projects

Current section

Files

Jump to
vibe lib vibe storage schema memory_fts.ex
Raw

lib/vibe/storage/schema/memory_fts.ex

defmodule Vibe.Storage.Schema.MemoryFTS do
@moduledoc "Ecto schema: FTS5 virtual table for memory search."
use Ecto.Schema
@primary_key false
schema "memories_fts" do
field(:memory_id, :string)
field(:scope_type, :string)
field(:scope_id, :string)
field(:inserted_at, :string)
field(:text, :string)
end
end