GitXplorerGitXplorer
l

django-changelog

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
74b84acb885807bb792b6c1d06db8678fe07113b

Update TravisCI settings to create a database

llyndsysimon committed 8 years ago
Unverified
e8690f0bb7458aea2e91cbdcc0a9a4d1d6518634

Add logs created on .update()

llyndsysimon committed 8 years ago
Unverified
2b2b1c1e04e3c2310ba5585022779da0a1e41d97

Update PostgreSQL version in travis config

llyndsysimon committed 8 years ago
Unverified
bb02e5231be225502a1dc942c5de337483ee98aa

Add flake8 to CI

llyndsysimon committed 8 years ago
Unverified
cd22930501de239b2ff1f41974fe9c5a58dbf97a

Refactor tests to use a common base class

llyndsysimon committed 8 years ago
Unverified
83dc5beb7849d7bf45a6873c1ef8719f104a5f11

Allow a queryset to be passed to `utils.create_sync_logs`

llyndsysimon committed 8 years ago

README

The README file for this repository.

========= Changelog

Django-changelog is a simple app that automates the creation of log entries when Django models changes.

Quick Start

  1. Add 'changelog' to your INSTALLED_APPS in settings.

  2. Add CHANGELOG_TRACKED_FIELDS to your settings::

    CHANGELOG_TRACKED_FIELDS = { 'myapp.MyModel': ( 'first_field_to_track', 'second_field_to_track', ), }

  3. Run ./manage.py migrate to create the required tables.