It happens when the default sqlite version is low on your operating system.
You need to reinstall sqlite and remigrate.
install sqlite
$ cd ~
$ wget https://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gz
$ tar zxvf sqlite-autoconf-3290000.tar.gz
$ cd sqlite-autoconf-3290000
$ ./configure --prefix=$HOME/opt/sqlite
$ make && make install
It happens when the default sqlite version is low on your operating system. You need to reinstall sqlite and remigrate.
Reference: https://stackoverflow.com/questions/55674176/django-cant-find-new-sqlite-version-sqlite-3-8-3-or-later-is-required-found