File: /var/www/ipsremont-demo/database/migrations/2022_08_15_123000_documents_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class DocumentsTable extends Migration
{
public function up()
{
Schema::create('documents', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('service_id')->nullable();
$table->string('method');
$table->dateTime('date');
$table->string('number');
$table->integer('sum');
$table->string('inn');
$table->string('code');
});
}
public function down()
{
Schema::dropIfExists('documents');
}
}