23 lines
602 B
PHP
Executable File
23 lines
602 B
PHP
Executable File
<?php
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
Schema::create('impostazioni', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('chiave')->unique();
|
|
$table->string('valore')->nullable();
|
|
$table->string('descrizione')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('impostazioni');
|
|
}
|
|
};
|