소스 검색

Add migration

Daniel Supernault 2 년 전
부모
커밋
252748ab23
1개의 변경된 파일34개의 추가작업 그리고 0개의 파일을 삭제
  1. 34 0
      database/migrations/2022_11_30_123940_update_avatars_table_remove_cdn_url_unique_constraint.php

+ 34 - 0
database/migrations/2022_11_30_123940_update_avatars_table_remove_cdn_url_unique_constraint.php

@@ -0,0 +1,34 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('avatars', function (Blueprint $table) {
+            $sm = Schema::getConnection()->getDoctrineSchemaManager();
+            $indexesFound = $sm->listTableIndexes('avatars');
+            if(array_key_exists("avatars_cdn_url_unique", $indexesFound)) {
+                $table->dropUnique('avatars_cdn_url_unique');
+            }
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+};