hyperf-chat/migrations/2021_07_02_165853_create_ro...

42 lines
1.5 KiB
PHP
Raw Normal View History

2021-07-05 21:52:44 +08:00
<?php
use Hyperf\Database\Schema\Schema;
use Hyperf\Database\Schema\Blueprint;
use Hyperf\Database\Migrations\Migration;
2022-01-21 22:19:42 +08:00
class CreateRobotTable extends Migration
2021-07-05 21:52:44 +08:00
{
/**
* Run the migrations.
*/
public function up(): void
{
2022-01-21 22:19:42 +08:00
Schema::create('robot', function (Blueprint $table) {
2021-07-05 21:52:44 +08:00
$table->unsignedInteger('id', true)->comment('机器人ID');
$table->unsignedInteger('user_id')->comment('关联用户ID');
$table->string('robot_name', 30)->default('')->comment('机器人名称');
$table->string('describe', 255)->default('')->comment('描述信息');
$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:已禁用;]');
2021-11-07 09:56:16 +08:00
$table->unsignedTinyInteger('type')->default(0)->unsigned()->comment('机器人类型');
2022-01-21 22:19:42 +08:00
$table->dateTime('created_at')->nullable()->comment('创建时间');
2021-07-05 21:52:44 +08:00
$table->dateTime('updated_at')->nullable()->comment('更新时间');
$table->charset = 'utf8';
$table->collation = 'utf8_general_ci';
$table->engine = 'InnoDB';
2021-09-12 16:23:43 +08:00
2021-08-27 23:50:40 +08:00
$table->comment('聊天机器人表');
2021-07-05 21:52:44 +08:00
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
2022-01-21 22:19:42 +08:00
Schema::dropIfExists('robot');
2021-07-05 21:52:44 +08:00
}
}