معرفی شرکت ها


ex-peewee-moves-2.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Simple and flexible migration manager for Peewee ORM.
ویژگی مقدار
سیستم عامل -
نام فایل ex-peewee-moves-2.0.1
نام ex-peewee-moves
نسخه کتابخانه 2.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tim Shaffer
ایمیل نویسنده timshaffer@me.com
آدرس صفحه اصلی https://github.com/timster/peewee-moves
آدرس اینترنتی https://pypi.org/project/ex-peewee-moves/
مجوز MIT
peewee-moves ############ A simple and flexible migration manager for `Peewee ORM <http://docs.peewee-orm.com/>`_. .. image:: http://img.shields.io/travis/timster/peewee-moves.svg?style=flat-square :target: http://travis-ci.org/timster/peewee-moves :alt: Build Status .. image:: http://img.shields.io/coveralls/timster/peewee-moves.svg?style=flat-square :target: https://coveralls.io/r/timster/peewee-moves :alt: Code Coverage .. image:: http://img.shields.io/pypi/v/peewee-moves.svg?style=flat-square :target: https://pypi.python.org/pypi/peewee-moves :alt: Version .. image:: http://img.shields.io/pypi/dm/peewee-moves.svg?style=flat-square :target: https://pypi.python.org/pypi/peewee-moves :alt: Downloads .. image:: https://readthedocs.org/projects/peewee-moves/badge/?version=latest :target: https://peewee-moves.readthedocs.io :alt: Documentation 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: .. code:: console $ 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. .. code:: python 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 <http://peewee-moves.readthedocs.io>`_ for more details.


نیازمندی

مقدار نام
<4,>=3.0 peewee
>=2.0 click


نحوه نصب


نصب پکیج whl ex-peewee-moves-2.0.1:

    pip install ex-peewee-moves-2.0.1.whl


نصب پکیج tar.gz ex-peewee-moves-2.0.1:

    pip install ex-peewee-moves-2.0.1.tar.gz