uuid('uuid')->after('description')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('contacts', function (Blueprint $table) { $table->dropColumn('uuid'); }); } }