Skip to content

0.32.0

Choose a tag to compare

@dantownsend dantownsend released this 08 Sep 14:18
· 184 commits to master since this release

Camelcase column names could break parts of Piccolo Admin. It now works as expected:

class Person(Table):
    # This now works:
    firstName = Varchar()

Even though camelcase is unusual in Python, a user may be using an existing database, so it makes sense to support it. Thanks to @sumitsharansatsangi for reporting this issue.