Skip to content

Commit 92add2d

Browse files
committed
完成迁移文件修改
1 parent 82ae455 commit 92add2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

migrations/2021_06_02_194802_create_ct_friend_chat_history_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function up(): void
1919
$table->string('status', 50)->default('')->comment('消息发送状态 going,failed,succeed');
2020
$table->bigInteger('send_time')->default('0')->comment('发送时间 13位毫秒');
2121
$table->text('content')->comment('消息内容');
22-
$table->integer('file_size', 11)->default('0')->comment('文件大小');
22+
$table->integer('file_size')->default('0')->comment('文件大小');
2323
$table->string('file_name', 255)->default('')->comment('文件名称');
2424
$table->integer('to_uid')->default('0')->comment('接收好友前');
2525
$table->integer('from_uid')->default('0')->comment('发送方');

migrations/2021_06_02_194903_create_ct_user_application_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function up(): void
1313
{
1414
Schema::create('ct_user_application', function (Blueprint $table) {
1515
$table->engine = 'InnoDB';
16-
$table->bigIncrements('id')->default('0');
16+
$table->bigIncrements('id');
1717
$table->integer('uid')->default('0')->comment('用户ID');
1818
$table->integer('receiver_id')->default('0')->comment('接收方');
1919
$table->string('group_id', 50)->default('')->comment('好友分组ID || 群');

0 commit comments

Comments
 (0)