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