Simple and flexible migration manager for Peewee ORM.
Project description
A simple and flexible migration manager for Peewee ORM.
Requirements
python >= 3.4, <= 3.6
peewee >= 3.0.0
Installation
This package can be installed using pip:
pip install peewee-moves
Usage
Here’s a quick teaser of what you can do with peewee-moves:
$ export FLASK_APP=myflaskapp
$ flask db create app.models.Category
INFO: created migration 0001_create_table_category
$ flask db revision "do something"
INFO: created migration 0002_do_something
$ flask db upgrade
INFO: 0001_create_table_category: upgrade
INFO: 0002_do_something: upgrade
$ flask db downgrade
INFO: 0002_do_something: downgrade
$ flask db status
INFO: 0001_create_table_category: applied
INFO: 0002_do_something: pending
And if you’re curious, here’s what 0001_create_table_category.py looks like. A migration was automatically created based on the definition of the Category model.
def upgrade(migrator):
with migrator.create_table('category') as table:
table.primary_key('id')
table.integer('code', unique=True)
table.string('name', max_length=250)
def downgrade(migrator):
migrator.drop_table('category')
Documentation
Check out the Full Documentation for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
peewee-moves-2.1.0.tar.gz
(10.9 kB
view hashes)
Built Distribution
Close
Hashes for peewee_moves-2.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2d77baa1aa081ae3cc20f57171dd343fc3127cc6e200eb8f0913f34840959ea |
|
MD5 | bfc8e9e2608e854b0d029659a039fc9a |
|
BLAKE2b-256 | 4675183b5f5986c6ac62ed7e984324978f7e3923ef4747e10543b8678c42c8c1 |