schema->table('infos', function (Blueprint $table) { $table->string('related', 512)->nullable(); }); } public function down() { $this->schema->table('infos', function (Blueprint $table) { $table->dropColumn('related'); }); } }