no message

This commit is contained in:
kuaifan 2024-03-15 01:50:52 +09:00
parent bcb0c6bc77
commit 285a62c87e
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddIndexSome20240315 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('web_socket_dialog_msg_reads', function (Blueprint $table) {
$table->index(['dialog_id', 'userid', 'read_at', 'msg_id'], 'IDEX_dialog_id_userid_read_at_msg_id');
});
}
/**
* Reverse the migrations.
*
* @return voidw
*/
public function down()
{
Schema::table('web_socket_dialog_msg_reads', function (Blueprint $table) {
$table->dropIndex('IDEX_dialog_id_userid_read_at_msg_id');
});
}
}

View File

@ -168,7 +168,7 @@
eeuiAppCopyText(text) {
if (!$A.isEEUiApp) return;
$A.eeuiModule("eeui").copyText(text)
$A.eeuiModuleSync("eeui").copyText(text)
},
});