doctrine 与 mysql 数据类型的详细转换规则。

来源:互联网 发布:被淘宝客服骗了怎么办 编辑:程序博客网 时间:2024/06/01 07:14

从代码里抠出来的

array(            'tinyint'       => 'boolean',            'smallint'      => 'smallint',            'mediumint'     => 'integer',            'int'           => 'integer',            'integer'       => 'integer',            'bigint'        => 'bigint',            'tinytext'      => 'text',            'mediumtext'    => 'text',            'longtext'      => 'text',            'text'          => 'text',            'varchar'       => 'string',            'string'        => 'string',            'char'          => 'string',            'date'          => 'date',            'datetime'      => 'datetime',            'timestamp'     => 'datetime',            'time'          => 'time',            'float'         => 'float',            'double'        => 'float',            'real'          => 'float',            'decimal'       => 'decimal',            'numeric'       => 'decimal',            'year'          => 'date',);


原创粉丝点击