Nikolay
Nikolay
`peewee_migrate makemigrations` does not create migrations correctly for indexes created using this api http://docs.peewee-orm.com/en/latest/peewee/models.html#advanced-index-creation 1. It does not detect any migration when the index has been added 2. It puts...
When you add a column with a default value `peewee_migrate makemigrations` creates a migration using constraints like that: ```python migrator.add_fields('some_model', some_int_field=constraints=[SQL("DEFAULT 5")])) ``` And it looks like such migrations break...
My code for migrator: ``` migrator.add_fields( 'component', file=pw.ForeignKeyField( backref='component_set', column_name='file_id', field='id', model=migrator.orm['file'], null=True, unique=True ) ) ``` leads to next sql log: ``` 2020-06-02 06:19:08.189 UTC [110] LOG: statement: ALTER...
I added some stats information for complted jobs table. [Here is](https://screenshots.firefoxusercontent.com/images/fb6d2037-6b16-4001-a41e-86ec0c69f6c9.png) how it looks
I think the button will be useful when you have(I do) a lot of spiders and/or periodic jobs.
I deployed spiderkeeper using apache and got 404 error when i opened **/project//job/periodic** url. It is url when you don't have any project and tries to go to other urls...
Hello i added some cosmetic fixes for your project: 1. Removed some pep-8 warnings. 2. Removed useless method **Project.find_project_by_id**, i think it would be easier to use **Project.query.get method** 3....
The question is mostly for you @rudyryk Would you mind if i remove deprecated methods such **update_object**, **delete_object** etc? And one more question. I think we can drop support for...
Looks like there is a race condition in the snippet: ```python # This is a part of code from AsyncDatabase.cursor_async try: # this line throws the error return (await self._async_conn.cursor(conn=conn))...
Hi! Thank you for your library it is very useful. I wonder when do you plan to make a new release with AsyncDriver? Maybe you need some help? I could...