Schema::create('stock_statuses', function (Blueprint $table) {
$table->unsignedBigInteger('stock_status_id')->autoIncrement();
$table->unsignedBigInteger('language_id');
$table->foreign('language_id')
->references('id')->on('localizations')
->onDelete('cascade');
$table->string('name')->nullable();
$table->timestamps();
});