visuddhinanda 3 лет назад
Родитель
Сommit
8e4d4136f0
1 измененных файлов с 38 добавлено и 0 удалено
  1. 38 0
      database/migrations/2023_03_08_083306_add_accept_in_sentences.php

+ 38 - 0
database/migrations/2023_03_08_083306_add_accept_in_sentences.php

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