Browse Source

Merge pull request #1698 from visuddhinanda/laravel

add log to tulip update
visuddhinanda 2 years ago
parent
commit
701771800b

+ 2 - 1
app/Tools/PaliSearch.php

@@ -91,7 +91,7 @@ class PaliSearch
                                   $bold1,$bold2,$bold3,
                                   $content,$pcd_book_id){
         $client = PaliSearch::connect();
-
+        Log::debug('tulip update',['book'=>$book,'paragraph'=>$paragraph]);
         $request = new \Mint\Tulip\V1\UpdateRequest();
         $request->setBook($book);
         $request->setParagraph($paragraph);
@@ -107,6 +107,7 @@ class PaliSearch
             Log::error("ERROR: " . $status->code . ", " . $status->details);
             return false;
         }
+        Log::debug('tulip update success',['book'=>$book,'paragraph'=>$paragraph]);
         return $response->getCount();
     }
 }

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

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