فهرست منبع

Merge pull request #5318 from pixelfed/staging

Create 2024_10_06_035032_modify_caption_field_in_media_table.php
daniel 9 ماه پیش
والد
کامیت
f27141ed89
1فایلهای تغییر یافته به همراه28 افزوده شده و 0 حذف شده
  1. 28 0
      database/migrations/2024_10_06_035032_modify_caption_field_in_media_table.php

+ 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();
+        });
+    }
+};