# `PgFlow.Schema.Dep`
[🔗](https://github.com/agoodway/pgflow/blob/v0.1.0/lib/pgflow/schema/dep.ex#L1)

Schema for the pgflow.deps table.

Represents a dependency relationship between steps with composite primary key
(flow_slug, step_slug, dep_slug).

# `t`

```elixir
@type t() :: %PgFlow.Schema.Dep{
  __meta__: term(),
  dep_slug: term(),
  flow_slug: term(),
  step: term(),
  step_slug: term()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
