From cc7d1eaf7187492809482bd70f51c63b3fda15f1 Mon Sep 17 00:00:00 2001 From: gzydong <837215079@qq.com> Date: Sun, 7 Nov 2021 09:56:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=BF=81=E7=A7=BB=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- migrations/2021_07_02_165853_create_robots_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/2021_07_02_165853_create_robots_table.php b/migrations/2021_07_02_165853_create_robots_table.php index 8c7cdc4..56420c1 100644 --- a/migrations/2021_07_02_165853_create_robots_table.php +++ b/migrations/2021_07_02_165853_create_robots_table.php @@ -19,6 +19,7 @@ class CreateRobotsTable extends Migration $table->string('logo', 255)->default('')->comment('机器人logo'); $table->unsignedTinyInteger('is_talk')->default(0)->unsigned()->comment('可发送消息[0:否;1:是;]'); $table->unsignedTinyInteger('status')->default(0)->unsigned()->comment('状态[-1:已删除;0:正常;1:已禁用;]'); + $table->unsignedTinyInteger('type')->default(0)->unsigned()->comment('机器人类型'); $table->dateTime('created_at')->nullable()->comment('注册时间'); $table->dateTime('updated_at')->nullable()->comment('更新时间');