Przeglądaj źródła

Create 2024_10_06_035032_modify_caption_field_in_media_table.php

Daniel Supernault 9 miesięcy temu
rodzic
commit
13f77a0fc7

+ 28 - 0
database/migrations/2024_10_06_035032_modify_caption_field_in_media_table.php

@@ -0,0 +1,28 @@
+<?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::table('media', function (Blueprint $table) {
+            $table->text('caption')->nullable()->change();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     */
+    public function down(): void
+    {
+        Schema::table('media', function (Blueprint $table) {
+            $table->text('caption')->nullable(false)->change();
+        });
+    }
+};