]> git.localhorst.tv Git - alttp.git/blob - database/migrations/2024_04_14_112456_better_chat_bot_log.php
log who sent manual random chats
[alttp.git] / database / migrations / 2024_04_14_112456_better_chat_bot_log.php
1 <?php
2
3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
6
7 return new class extends Migration
8 {
9     /**
10      * Run the migrations.
11      */
12     public function up(): void
13     {
14                 Schema::table('chat_bot_logs', function (Blueprint $table) {
15                         $table->foreignId('user_id')->nullable()->default(null)->constrained();
16                         $table->string('category')->default('');
17                 });
18     }
19
20     /**
21      * Reverse the migrations.
22      */
23     public function down(): void
24     {
25                 Schema::table('chat_bot_logs', function (Blueprint $table) {
26                         $table->dropColumn('user_id');
27                         $table->dropColumn('category');
28                 });
29     }
30 };