Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
ropable committed Dec 19, 2024
1 parent 5e7ac1f commit 24ce6ed
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Tagged releases are built and pushed to PyPI automatically using a GitHub
workflow in the project. Update the project version in `pyproject.toml` and
tag the required commit with the same value to trigger a release.

Build the project locally using Poetry:

poetry build

## Installation

1. Install via pip/Poetry/etc.: `pip install dbca-utils`
Expand Down Expand Up @@ -60,7 +64,7 @@ MIDDLEWARE = [

`AuditMixin` is an extension of `Django.db.model.Model` that adds a number of additional fields:

- creator - FK to `AUTH_USER_MODEL`, used to record the object creator
- modifier - FK to `AUTH_USER_MODEL`, used to record who the object was last modified by
- created - a timestamp that is set on initial object save
- modified - an auto-updating timestamp (on each object save)
- `creator` - FK to `AUTH_USER_MODEL`, used to record the object creator
- `modifier` - FK to `AUTH_USER_MODEL`, used to record who the object was last modified by
- `created` - a timestamp that is set on initial object save
- `modified` - an auto-updating timestamp (on each object save)

0 comments on commit 24ce6ed

Please sign in to comment.