cuckoo-db

Simple migration tool


License
MIT
Install
pip install cuckoo-db==0.2.2

Documentation

Cuckoo

Installation

$ pip install cuckoo-db

Usage

# Create a new empty migration
$ cuckoo new helloworld
Migration [./migrations/1523455521_helloworld.py] created successfully!

# Apply all migrations
$ cuckoo migrate up
Migrating [up].
Processing migration [1523455521_helloworld].
Migration complete.

# Remove all migrations
$ cuckoo migrate down
Migrating [down]
Processing migration [1523455521_helloworld].
Migration complete.