up
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('inventario_prendas', function (Blueprint $table) {
|
||||
$table->foreignId('producto_id')->nullable()->constrained('productos')->nullOnDelete()->after('orden_produccion_id');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('inventario_prendas', function (Blueprint $table) {
|
||||
$table->dropForeign(['producto_id']);
|
||||
$table->dropColumn('producto_id');
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('orden_produccions', function (Blueprint $table) {
|
||||
$table->foreignId('producto_id')->nullable()->constrained('productos')->nullOnDelete()->after('tela_id');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('orden_produccions', function (Blueprint $table) {
|
||||
$table->dropForeign(['producto_id']);
|
||||
$table->dropColumn('producto_id');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user