1
使用PhalconPHP,是否可以使用ORM模型在數據庫中創建包含註釋中元數據的表?例如,使用交響樂一個可以achive什麼,我想是這樣的:http://symfony.com/doc/current/book/doctrine.htmlPhalconPHP動態創建表
使用PhalconPHP,是否可以使用ORM模型在數據庫中創建包含註釋中元數據的表?例如,使用交響樂一個可以achive什麼,我想是這樣的:http://symfony.com/doc/current/book/doctrine.htmlPhalconPHP動態創建表
所以我已經找到了解決辦法是這樣的
$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"))
)
));
希望這將是幫助別人:)