After upgrading to Meltano 2.0, running Airflow failed with an error saying the sqlite database file didn't exist and asking whether to run airflow db init. The reporter had Airflow 1.10 configured and then tried 2.1, but the metadata DB setup kept breaking. A maintainer walked through the migration: Airflow 2.x replaced the old AIRFLOW__CORE__SQL_ALCHEMY_CONN with AIRFLOW__DATABASE__SQL_ALCHEMY_CONN, and the postgres connection scheme had to be postgresql:// (with the l), not postgres://. The working setup was Airflow 2.3.2 with a fresh metadata database, the new env var names, and the postgresql:// scheme. The reporter confirmed this combination worked and thanked the maintainers.