Schema::rename($currentTableName, $newTableName);
$table->string('foo')->nullable(false)->change();
php artisan make:migration rename_author_id_in_posts_table --table=posts
public function up()
{
Schema::table('posts', function (Blueprint $table) {
$table->renameColumn('author_ID', 'user_id');
});
}
php artisan make:migration alter_your_table --table=your_table