This is an automated email from the ASF dual-hosted git repository.

weilee pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 73cc7538ad remove the removed --use-migration-files argument of 
"airflow db reset" command in run_generate_migration.sh (#41621)
73cc7538ad is described below

commit 73cc7538adb107c892794b6451e2982b04863b9e
Author: Wei Lee <[email protected]>
AuthorDate: Wed Aug 21 11:07:30 2024 +0800

    remove the removed --use-migration-files argument of "airflow db reset" 
command in run_generate_migration.sh (#41621)
---
 scripts/in_container/run_generate_migration.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/in_container/run_generate_migration.sh 
b/scripts/in_container/run_generate_migration.sh
index 77030ab852..50a6985513 100755
--- a/scripts/in_container/run_generate_migration.sh
+++ b/scripts/in_container/run_generate_migration.sh
@@ -16,9 +16,9 @@
 # specific language governing permissions and limitations
 # under the License.
 # shellcheck source=scripts/in_container/_in_container_script_init.sh
-. "$( dirname "${BASH_SOURCE[0]}" )/_in_container_script_init.sh"
+. "$(dirname "${BASH_SOURCE[0]}")/_in_container_script_init.sh"
 
 cd "${AIRFLOW_SOURCES}" || exit 1
 cd "airflow" || exit 1
-airflow db reset --use-migration-files
+airflow db reset
 alembic revision --autogenerate -m "${@}"

Reply via email to