mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-28 05:48:12 +00:00
no message
This commit is contained in:
parent
bcb0c6bc77
commit
285a62c87e
@ -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');
|
||||
});
|
||||
}
|
||||
}
|
||||
2
resources/assets/js/functions/eeui.js
vendored
2
resources/assets/js/functions/eeui.js
vendored
@ -168,7 +168,7 @@
|
||||
|
||||
eeuiAppCopyText(text) {
|
||||
if (!$A.isEEUiApp) return;
|
||||
$A.eeuiModule("eeui").copyText(text)
|
||||
$A.eeuiModuleSync("eeui").copyText(text)
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user