gpt4 book ai didi

php - PhalconPHP 动态创建表

转载 作者:搜寻专家 更新时间:2023-10-30 22:12:50 26 4
gpt4 key购买 nike

使用 PhalconPHP,是否可以使用带有注释元数据的 ORM 模型在数据库中创建表?例如,使用 symphony one 可以实现我想要的效果:http://symfony.com/doc/current/book/doctrine.html

最佳答案

所以我找到的解决方案是这个

$connection->createTable("robots", null, array(
"columns" => array(
new Column("id", array(
"type" => Column::TYPE_INTEGER,
"size" => 10,
"notNull" => true,
"autoIncrement" => true,
)),
new Column("name", array(
"type" => Column::TYPE_VARCHAR,
"size" => 70,
"notNull" => true,
)),
new Column("year", array(
"type" => Column::TYPE_INTEGER,
"size" => 11,
"notNull" => true,
))
),
"indexes" => array(
new Index("PRIMARY", array("id"))
)
));

希望对大家有所帮助:)

关于php - PhalconPHP 动态创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21122548/

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