id(); $table->string('chat_id')->unique(); $table->boolean('type_team_state')->default(true); $table->string('last_message_hash')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('telegram_bot_notifications'); } };