v1a0 / sqllex

The most pythonic ORM (for SQLite and PostgreSQL). Seriously, try it out!
https://v1a0.github.io/sqllex
GNU General Public License v3.0
92 stars 8 forks source link

BUG | ABTable.create_table returns empty list #46

Closed v1a0 closed 3 years ago

v1a0 commented 3 years ago

ABTable.create_table returns empty list instead of None-return

db.create_table('user', {
    'id': sqllex.constants.INTEGER,
    'name': sqllex.constants.sqlite.TEXT
})
# []