浏览代码

添加real索引

visuddhinanda 3 年之前
父节点
当前提交
00e10c8ff7
共有 1 个文件被更改,包括 35 次插入0 次删除
  1. 35 0
      database/migrations/2022_08_14_131951_add_realindex_in_wbw_templates.php

+ 35 - 0
database/migrations/2022_08_14_131951_add_realindex_in_wbw_templates.php

@@ -0,0 +1,35 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class AddRealindexInWbwTemplates extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('wbw_templates', function (Blueprint $table) {
+            //
+			$table->index(['real']);
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('wbw_templates', function (Blueprint $table) {
+            //
+            $table->dropIndex('wbw_templates_real_index');
+
+        });
+    }
+}