[Doctrine] Erreur Created_at
Bonsoir,
Voici mon schema.YML :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
News:
tableName: news
columns:
id:
type: integer(2)
primary: true
autoincrement: true
title:
type: string(255)
notnull: true
content:
type: string(2147483647)
notnull: true
author:
type: string(50)
notnull: true
created_at: |
Et voici l'erreur :
While exporting model class 'News' to SQL: Around field created_at: Unknown field type ''.
Dans le doute je précise que j'utilise phpEdit. Savez vous pourquoi cette erreur ?