0
有人能告訴我一個關於如何在Doctrine中使用createTable的例子嗎? 例如,我想創建一個表 '附着' 有以下的列: 'FILE_PATH'=>串 'MESSAGE_ID'=>整數Symfony 1.4教條創建表
由於
有人能告訴我一個關於如何在Doctrine中使用createTable的例子嗎? 例如,我想創建一個表 '附着' 有以下的列: 'FILE_PATH'=>串 'MESSAGE_ID'=>整數Symfony 1.4教條創建表
由於
發現:
$this->createTable('attachment', array(
'id' =>
array(
'type' => 'integer',
'length' => 8,
'autoincrement' => true,
'primary' => true,
),
'file_path' =>
array(
'type' => 'string',
'notnull' => true,
'length' => 255,
),
'message_id' =>
array(
'type' => 'integer',
'notnull' => false,
'length' => 8,
),
'created_at' =>
array(
'notnull' => true,
'type' => 'timestamp',
'length' => 25,
),
'updated_at' =>
array(
'notnull' => true,
'type' => 'timestamp',
'length' => 25,
),
), array(
'indexes' =>
array(
),
'primary' =>
array(
0 => 'id',
),
'collate' => 'utf8_general_ci',
'charset' => 'utf8',
));