分类
教程
文章
官方文档
入门教程
文章
VIP会员
移除索引
赞
收藏
更多文章
目录
301 Moved Permanently
301 Moved Permanently
nginx
搜索
A
A
默认
护眼
夜间
阅读(421)
赞
(
29
)
移除索引
2016-02-24 15:53:00 更新
要移除索引您必须指定索引名称,Laravel 默认有脉络可循的索引名称。简单地链接这些数据表与索引的字段名称和类型。举例如下:
命令
功能描述
$table->dropPrimary('users_id_primary');
从「users」数据表移除主键
$table->dropUnique('users_email_unique');
从「users」数据表移除唯一索引
$table->dropIndex('geo_state_index');
从「geo」数据表移除基本索引
←
外键
移除时间戳记和软删除
→