bdragon300 / mongoengine-migrate

Migrations for MongoEngine inspired by Django
Apache License 2.0
17 stars 5 forks source link

Make `MigrationGraph` as dict-like object instead of list-like one #32

Open bdragon300 opened 3 years ago

bdragon300 commented 3 years ago

It's more convenient to work with graph using dict protocol. Now it implements list protocol.

It should be smth like {migration_name: MIgration_object}.