text('geo')->nullable(); $table->text('place')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tweets', function (Blueprint $table) { $table->dropColumn('geo'); $table->dropColumn('place'); }); } }