lms/database/migrations/2025_08_09_223225_create_footers_table.php
2025-12-15 12:26:23 +01:00

31 lines
659 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('footers', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('slug');
$table->boolean('active')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('footers');
}
};