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.

Link to this section Summary

Link to this section 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()
}

Link to this section Functions

Link to this function

changeset(step, attrs \\ %{})

View Source