New Initial Commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?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('hero_images', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->enum('page', ['home', 'wallpaper', 'mural']);
|
||||
$table->string('image_path');
|
||||
$table->string('title');
|
||||
$table->text('description')->nullable();
|
||||
$table->string('button_text')->nullable();
|
||||
$table->string('button_link')->nullable();
|
||||
$table->integer('sort_order')->default(0);
|
||||
$table->boolean('is_active')->default(true);
|
||||
$table->timestamps();
|
||||
|
||||
$table->index('page');
|
||||
$table->index('is_active');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('hero_images');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user