2
I’m in need of executing only one migration
within my system laravel
, not to affect the rest of it.
Excerpt from the Migration:
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('body')->nullable();
$table->timestamp('date');
$table->timestamps();
});
}
I’ve tried some procedures like the ones described here but all without success. Always returning:
Nothing to migrate.
Note: The system has been updated and there are changes to be migrated
I have already carried out all these steps and without success, I believe that an alternative solution to this will be necessary
– sant0will