I have a question about Laravel's Migrations and I believe they can help me.
1 - I created a model with migration by php artisan make:model Evento -m;
2 - In addition to increments and timestamps I added one more field to the migration: $table->string('nome');
3 - I ran the command php artisan migrate;
My question is, after I ran the php artisan migrate the table was created in the database. And if by chance I need to add another column in the table in the bank, how should I proceed in relation to the respective laravel migration? Should I make direct in the bank or is there a migration command?