[DIGITALOCEAN] Managed DB #sql_require_primary_key - fourslickz/notes GitHub Wiki
php artisan tinker
Once there, execute to disable the check
DB::statement('SET SESSION sql_require_primary_key=0');
then execute to run all your migrations.
Artisan::call('migrate --force');