feat: weakup tweet

This commit is contained in:
2026-03-16 16:17:44 +08:00
parent 8d30a0419d
commit 81a22a2b54
6 changed files with 42 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ return new class extends Migration
$table->string('diagram_url', 500)->nullable()->comment('组态界面地址');
$table->string('scada_data_url', 500)->nullable()->comment('网关数据查询地址');
$table->string('scada_tags_url', 500)->nullable()->comment('网关点位定义查询地址');
$table->boolean('voice_wakeup_enabled')->default(false)->comment('语音唤醒是否启用');
$table->string('voice_wakeup_word', 100)->nullable()->comment('语音唤醒词');
$table->boolean('is_online')->default(false)->comment('在线状态');
$table->timestamp('last_online_at')->nullable()->comment('最后在线时间');
$table->timestamps();