visuddhinanda 2 년 전
부모
커밋
512db8198c
1개의 변경된 파일32개의 추가작업 그리고 0개의 파일을 삭제
  1. 32 0
      database/migrations/2023_11_10_012832_add_channel_id_in_custom_books.php

+ 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');
+        });
+    }
+}