decimal('price', 7, 2)->nullable(); }); Schema::table('licenses', function ($table) { $table->unsignedInteger('product_id')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('affiliates', function ($table) { $table->dropColumn('price'); }); Schema::table('licenses', function ($table) { $table->dropColumn('product_id'); }); } }