id(); $table->integer('message_id'); $table->integer('user_id')->nullable(); $table->integer('chat_id'); $table->string('chat_type'); $table->string('type'); $table->integer('resource_id')->nullable(); $table->string('resource_type')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('telegram_special_messages'); } };