Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add drop_keyspace and drop_table. #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion flask_cqlalchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""
from cassandra.cqlengine import connection
from cassandra.cqlengine.management import (
sync_table, create_keyspace_simple, sync_type
sync_table, create_keyspace_simple, sync_type, drop_keyspace, drop_table
)
from cassandra.cqlengine import columns
from cassandra.cqlengine import models
Expand All @@ -35,6 +35,8 @@ def __init__(self, app=None):
self.app = app
self.sync_table = sync_table
self.sync_type = sync_type
self.drop_keyspace = drop_keyspace
self.drop_table = drop_table
self.create_keyspace_simple = create_keyspace_simple
if app is not None:
self.init_app(app)
Expand Down