Skip to content

Instantly share code, notes, and snippets.

@yzdann
Forked from vkotovv/app.py
Created October 2, 2018 14:05
Show Gist options
  • Save yzdann/942b51ced0b3ea24f0b1d480f3cc29a0 to your computer and use it in GitHub Desktop.
Save yzdann/942b51ced0b3ea24f0b1d480f3cc29a0 to your computer and use it in GitHub Desktop.
Clear data for all tables via flask-sqlalchemy
def clear_data(session):
meta = db.metadata
for table in reversed(meta.sorted_tables):
print 'Clear table %s' % table
session.execute(table.delete())
session.commit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment