This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch chart-ds-constraint in repository https://gitbox.apache.org/repos/asf/superset.git
commit 564ae4ab37a3816228d68b8896c5f9ce60cddd86 Author: hughhhh <[email protected]> AuthorDate: Mon Mar 27 12:31:20 2023 -0400 add migration --- ...03-27_12-30_7e67aecbf3f1_chart_ds_constraint.py | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/superset/migrations/versions/2023-03-27_12-30_7e67aecbf3f1_chart_ds_constraint.py b/superset/migrations/versions/2023-03-27_12-30_7e67aecbf3f1_chart_ds_constraint.py new file mode 100644 index 0000000000..8b22ebbf50 --- /dev/null +++ b/superset/migrations/versions/2023-03-27_12-30_7e67aecbf3f1_chart_ds_constraint.py @@ -0,0 +1,36 @@ +# 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. +"""chart-ds-constraint + +Revision ID: 7e67aecbf3f1 +Revises: b5ea9d343307 +Create Date: 2023-03-27 12:30:01.164594 + +""" + +# revision identifiers, used by Alembic. +revision = '7e67aecbf3f1' +down_revision = 'b5ea9d343307' + +from alembic import op +import sqlalchemy as sa + +def upgrade(): + pass + +def downgrade(): + pass
