forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add explicit ON DELETE CASCADE for dashboard_roles (apache#25320)
- Loading branch information
1 parent
e652659
commit 75aeeaf
Showing
4 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...tions/versions/2023-09-15_12-58_4b85906e5b91_add_on_delete_cascade_for_dashboard_roles.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
"""add on delete cascade for dashboard_roles | ||
Revision ID: 4b85906e5b91 | ||
Revises: 317970b4400c | ||
Create Date: 2023-09-15 12:58:26.772759 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "4b85906e5b91" | ||
down_revision = "317970b4400c" | ||
|
||
|
||
from superset.migrations.shared.constraints import ForeignKey, redefine | ||
|
||
foreign_keys = [ | ||
ForeignKey( | ||
table="dashboard_roles", | ||
referent_table="dashboards", | ||
local_cols=["dashboard_id"], | ||
remote_cols=["id"], | ||
), | ||
ForeignKey( | ||
table="dashboard_roles", | ||
referent_table="ab_role", | ||
local_cols=["role_id"], | ||
remote_cols=["id"], | ||
), | ||
] | ||
|
||
|
||
def upgrade(): | ||
for foreign_key in foreign_keys: | ||
redefine(foreign_key, on_delete="CASCADE") | ||
|
||
|
||
def downgrade(): | ||
for foreign_key in foreign_keys: | ||
redefine(foreign_key) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters