Metadata-Version: 1.1
Name: django-table-archive
Version: 0.0.2
Summary: A Django app to automatically handle archiving model tables in MySQL.
Home-page: https://github.com/rayhern/django-table-archive
Author: Raymond Hernandez
Author-email: bizong@gmail.com
License: BSD
Description: =====================
        django-table-archive
        =====================
        
        Django table archive is an app that will allow you to backup your models in MySQL to a different database.
        
        Quick start
        -----------
        
        1. Add "django_table_sharding" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django_table_archive',
            ]
        
        2. Add this to your settings.py::
        
        	ARCHIVE_TABLES = [
        	    {
        	        'table': 'api_person',
        	        'days_old': '90',
        	        'date_field': 'date_created'
        	    }
        	]
        
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
