gpt4 book ai didi

php - OctoberCMS 不创建索引

转载 作者:可可西里 更新时间:2023-11-01 09:00:30 30 4
gpt4 key购买 nike

我正在我的 OctoberCMS 插件中创建一些数据库表,我想在这些表中使用一些索引。问题是没有创建这些索引,创建的表没有索引。

Schema::create('table', function ($table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->text('textField')->index();
$table->timestamps();
});

为什么这是/可能是?

编辑:根据评论,我想提一下,这不仅发生在文本字段上,也发生在整数字段上。

最佳答案

这样试试:

Schema::create('table', function ($table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->text('textField');
$table->index(['text_field'])
$table->timestamps();
});

关于php - OctoberCMS 不创建索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44825821/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com