Current section
Files
Jump to
Current section
Files
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