Skip to content

Commit

Permalink
change the ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed May 25, 2024
1 parent 3a89118 commit dee1cd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@


def upgrade():
op.drop_table("sl_columns")
op.drop_table("sl_dataset_columns")
op.drop_table("sl_table_columns")
op.drop_table("sl_dataset_tables")
op.drop_table("sl_dataset_columns")
op.drop_table("sl_columns")
op.drop_table("sl_tables")
op.drop_table("sl_datasets")
op.drop_table("sl_dataset_users")
op.drop_table("sl_datasets")


def downgrade():
Expand Down
1 change: 0 additions & 1 deletion tests/integration_tests/datasets/api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
DAODeleteFailedError,
DAOUpdateFailedError,
)
from superset.datasets.models import Dataset # noqa: F401
from superset.extensions import db, security_manager
from superset.models.core import Database
from superset.models.slice import Slice
Expand Down

0 comments on commit dee1cd0

Please sign in to comment.