In order to use the LocalExecutor, you need also need to upgrade your database by using MySql or Postgres. I recommend :
Using postgres : Create a db dedicate to airflow (like : airflow_db), create an user and grant him all control on this db
pip install psycopg2-binary and pip install apache-airflow[postgres]
Configure airflow.cfg ( sql_alchemy_conn = postgresql+psycopg2://:@:/airflow_db)
start db server
launch : airflow standalone