# `Beancount.Schemas.PushTag`
[🔗](https://github.com/thanos/beancount_ex/blob/v0.6.0/lib/beancount/schemas/directives.ex#L507)

Persisted `pushtag` directive (table `beancount_push_tags`).

Storage-layer counterpart of `Beancount.Directives.PushTag`. This directive
has no date; its position (`file_order`) determines the tag's scope.

## Fields

  * `tag` - tag name without the leading `#`, e.g. `"trip-athens"`.
  * `file_order` - zero-based position of the directive in the source.

## Example

    %Beancount.Schemas.PushTag{tag: "trip-athens", file_order: 3}

# `t`

```elixir
@type t() :: %Beancount.Schemas.PushTag{
  __meta__: term(),
  file_order: term(),
  id: term(),
  inserted_at: term(),
  tag: term(),
  updated_at: term()
}
```

---

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