visuddhinanda 1 년 전
부모
커밋
26e15c3cbb
1개의 변경된 파일0개의 추가작업 그리고 35개의 파일을 삭제
  1. 0 35
      api-v8/database/migrations/2025_02_16_075250_create_sentence_attachments_table.php

+ 0 - 35
api-v8/database/migrations/2025_02_16_075250_create_sentence_attachments_table.php

@@ -1,35 +0,0 @@
-<?php
-
-use Illuminate\Database\Migrations\Migration;
-use Illuminate\Database\Schema\Blueprint;
-use Illuminate\Support\Facades\Schema;
-
-class CreateSentenceAttachmentsTable extends Migration
-{
-    /**
-     * Run the migrations.
-     *
-     * @return void
-     */
-    public function up()
-    {
-        Schema::create('sentence_attachments', function (Blueprint $table) {
-            $table->id();
-            $table->uuid('uid')->unique();
-            $table->uuid('sentence_id')->index();
-            $table->uuid('attachment_id')->index();
-            $table->uuid('editor_id')->index();
-            $table->timestamps();
-        });
-    }
-
-    /**
-     * Reverse the migrations.
-     *
-     * @return void
-     */
-    public function down()
-    {
-        Schema::dropIfExists('sentence_attachments');
-    }
-}