View Source Plausible.Funnel.Step (Plausible v0.0.1)

This module defines the database schema for a single Funnel step. See: Plausible.Funnel for more information.

Summary

Types

@type t() :: %Plausible.Funnel.Step{
  __meta__: term(),
  funnel: term(),
  funnel_id: term(),
  goal: term(),
  goal_id: term(),
  id: term(),
  inserted_at: term(),
  step_order: term(),
  updated_at: term()
}

Functions

Link to this function

changeset(step, goal_or_attrs \\ %{})

View Source