| 1234567891011121314151617181920212223242526272829303132333435 |
- <?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('services', function (Blueprint $table) {
- $table->id();
- $table->string('title');
- $table->string('slug')->unique();
- $table->string('icon', 10)->default('');
- $table->text('excerpt')->default('');
- $table->longText('description')->nullable();
- $table->json('tags')->nullable();
- $table->unsignedSmallInteger('sort_order')->default(0);
- $table->boolean('is_active')->default(true);
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- */
- public function down(): void
- {
- Schema::dropIfExists('services');
- }
- };
|