I need to run only migration
within my laravel
system, so as not to affect the rest of it.
Excerpt from 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 have tried some procedures like those described here > but all to no avail. Always returning:
Nothing to migrate.
Note: The system has been updated and there are changes to be migrated