gestionale2025/database/migrations/2022_03_14_151214_create_documentis_table.php
2025-08-05 14:10:01 +02:00

34 lines
664 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateDocumentisTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('documentis', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('descrizione');
$table->string('path');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('documentis');
}
}