Ecto schema for permission names.
Permission names are stored as strings so they can be seeded, edited and transported through APIs without creating atoms at runtime.
Summary
Types
@type t() :: %PermitEx.Permission{ __meta__: term(), description: String.t() | nil, id: Ecto.UUID.t() | nil, inserted_at: DateTime.t() | nil, name: String.t() | nil, role_permissions: term(), updated_at: DateTime.t() | nil }