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