فهرست منبع

Merge branch 'ControlPanel-gg:development' into development

Dennis 2 سال پیش
والد
کامیت
d55a6b1944
1فایلهای تغییر یافته به همراه32 افزوده شده و 0 حذف شده
  1. 32 0
      database/migrations/2023_01_03_185102_update_make_description_text_in_nests_table.php

+ 32 - 0
database/migrations/2023_01_03_185102_update_make_description_text_in_nests_table.php

@@ -0,0 +1,32 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class UpdateMakeDescriptionTextInNestsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('nests', function (Blueprint $table) {
+            $table->text('description')->change();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('nests', function (Blueprint $table) {
+            $table->string('description')->change();
+        });
+    }
+}