38 lines
953 B
PHP
38 lines
953 B
PHP
<?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::create('incomingitems', function (Blueprint $table) {
|
|
$table->id();
|
|
|
|
$table->foreignId('incoming_id')->constrained();
|
|
|
|
$table->string('name');
|
|
$table->string('article_number')->nullable();
|
|
$table->text('description')->nullable();
|
|
$table->decimal('amount', 8, 2);
|
|
$table->decimal('discount', 8, 2)->nullable();
|
|
$table->decimal('tax', 8, 2);
|
|
$table->decimal('price', 8, 2);
|
|
$table->decimal('total', 8, 2);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('incomingitems');
|
|
}
|
|
};
|