我正在尝试让所有登录到最后一天的用户。我该怎么办?
在yml中,用户表是Timestampable。
我在Symfony 1.4中使用Doctrine 1.2。
Users:
tableName: users
options:
type: InnoDB
collate: utf8_general_ci
charset: utf8
actAs:
Timestampable:
updated:
disabled: true
答案 0 :(得分:1)
除非您在每次有人登录时添加更新记录的字段,否则不能.Timestampable为您提供“created_at”(记录创建)和“updated_at”(记录上次更新)。