Metadata-Version: 2.1
Name: safe_migrations
Version: 0.1.0
Summary: A Django package to safely generate and apply migrations from historical commits.
Home-page: https://github.com/yourusername/safe_migrations
Author: Mohammad Mohsen Ahmadi
Author-email: mohsenaahmadi@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=3.2
Requires-Dist: gitpython>=3.1.30

# Safe Migrations

A Django package to safely generate and apply migrations from historical commits.

## Installation

Install the package via pip:

```bash
pip install safe-migrations
```

## Usage

```bash
python manage.py safe_migration [commit_hash]
```

## Features

Automatically identifies model changes across commits.
Generates and applies all missing migrations safely.
