peewee_migrate icon indicating copy to clipboard operation
peewee_migrate copied to clipboard

No documentation of the migration's name

Open paulocheque opened this issue 7 years ago • 1 comments

It must start with 3 numbers, like 001_something.py

paulocheque avatar Mar 10 '17 23:03 paulocheque

in line 195 of router.py is the regex r"[\d]{3}_[^\.]+\.py$". 3 numbers, underscore, every char except "." for one or more times, ".py" and the end of string.

so... these would be possible: 999_a.py 001_foo_bar-foo.py 001_helloWorld.py and even 1000_a-foobar.py would match

Thorbijoern avatar Apr 20 '18 11:04 Thorbijoern