Simple and flexible migration manager for Peewee ORM.
Project description
A simple and flexible migration manager for Peewee ORM.
Requirements
python >= 3.3
peewee >= 2.8.2
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-1.7.1.tar.gz
(11.2 kB
view hashes)
Built Distribution
Close
Hashes for peewee_moves-1.7.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 305e62a04de70ab22655c30b91aa21c6c8845c335d373f8f70c768d945c33bcc |
|
MD5 | 8bd995ecf4e1d45ebe740516958d41b0 |
|
BLAKE2b-256 | 3ee6a402e1943f48b4f9c7a3fd74357a9b562d6d8a39345809e7e3b0a93b2892 |