visuddhinanda před 2 roky
rodič
revize
f8bcfe0d95

+ 34 - 0
database/migrations/2023_07_21_023409_add_category_in_relations.php

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