gpt4 book ai didi

cakephp - 如何通过cakephp迁移在数据库表中添加一个字段?

转载 作者:行者123 更新时间:2023-12-01 11:31:27 26 4
gpt4 key购买 nike

我在 cakephp 版本 3 中很新。在这里我尝试使用迁移插件。我已经使用以下命令创建了一个表

=> cake bake migration CreateUsers name : string 

它工作得很好,现在我想在这里添加一个字段,所以我写了
=> cake bake migration add age:int to Users 

它不起作用。我怎样才能通过迁移使用shall 命令来添加这个字段?你能帮我吗?

最佳答案

像这样的语法

add column:type to table

不存在,所以这就是为什么你看到你所看到的。添加列的正确语法是

AddColumnNameToTableName column:type

其中 Add 之间的列名和 To是可选的。

即你的命令应该看起来像

bin/cake bake migration AddAgeToUsers age:int 


  • Cookbook > Migrations > Creating Migrations
  • https://github.com/cakephp/migrations
  • 关于cakephp - 如何通过cakephp迁移在数据库表中添加一个字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31628874/

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