feature/modelos-y-migraciones #3
|
@ -7,6 +7,14 @@
|
|||
|
||||
class Producto extends Model
|
||||
{
|
||||
/**
|
||||
* La categoría a la que pertenece el producto.
|
||||
*/
|
||||
public function categoria(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Categoria::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Los pedidos que tienen al producto.
|
||||
*/
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('productos', function (Blueprint $table) {
|
||||
$table->unsignedBigInteger('categoria_id')->after('id');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('productos', function (Blueprint $table) {
|
||||
$table->dropColumn('categoria_id');
|
||||
});
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue