visuddhinanda il y a 3 ans
Parent
commit
0ee0ab2537

+ 37 - 0
database/migrations/2023_04_09_070539_add_deleted_at_article_collections.php

@@ -0,0 +1,37 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class AddDeletedAtArticleCollections extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        //
+        Schema::table('article_collections', function (Blueprint $table) {
+            $table->timestamp('deleted_at')->nullable()->index();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+        Schema::table('article_collections', function (Blueprint $table) {
+            //
+            $table->dropColumn('deleted_at');
+
+        });
+
+    }
+}