ash_sqlite/lib/functions/ilike.ex
2023-10-10 15:42:51 -04:00

9 lines
191 B
Elixir

defmodule AshSqlite.Functions.ILike do
@moduledoc """
Maps to the builtin sqlite function `ilike`.
"""
use Ash.Query.Function, name: :ilike
def args, do: [[:string, :string]]
end