mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-07 05:13:11 +00:00
no message
This commit is contained in:
parent
0688feefb1
commit
9390965a0c
@ -14,9 +14,10 @@ class CreateMeetingMsgsTable extends Migration
|
|||||||
*/
|
*/
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
|
Schema::dropIfExists('meeting_msgs');
|
||||||
Schema::create('meeting_msgs', function (Blueprint $table) {
|
Schema::create('meeting_msgs', function (Blueprint $table) {
|
||||||
$table->bigIncrements('id');
|
$table->bigIncrements('id');
|
||||||
$table->string('meetingid')->nullable()->default('')->unique()->comment('会议ID');
|
$table->string('meetingid')->nullable()->default('')->comment('会议ID');
|
||||||
$table->bigInteger('dialog_id')->nullable()->default(0)->comment('对话ID');
|
$table->bigInteger('dialog_id')->nullable()->default(0)->comment('对话ID');
|
||||||
$table->bigInteger('msg_id')->nullable()->default(0)->comment('消息ID');
|
$table->bigInteger('msg_id')->nullable()->default(0)->comment('消息ID');
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user