float('latitude')->nullable(); $table->float('longitude')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('places', function (Blueprint $table) { $table->dropColumn('latitude'); $table->dropColumn('longitude'); }); } }