|
...
|
...
|
@@ -13,7 +13,7 @@ class CreateTicketChatsTable extends Migration |
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('ticket_chats', function (Blueprint $table) {
|
|
|
|
Schema::create('gl_ticket_chats', function (Blueprint $table) {
|
|
|
|
$table->id();
|
|
|
|
$table->longText('content')->comment('消息内容');
|
|
|
|
$table->json('files')->nullable()->comment('附件');
|
...
|
...
|
|