I\'m using Laravel 5.1. To make it simple, I have the following code
Migration:
Schema::create(\'sitemap_data\', function (Blueprint $table) { // Pri
As mentioned in comments, if the model did not change the timestamps wont be updated. However if you need to update them, or want to check if everything is working fine use $model->touch() - more here
$model->touch()