Rechange date to datetime because withou migration script it broke the task edition

bzr revid: ced-3ffaf80e56abd989be5f976978027b8749bdce76
This commit is contained in:
ced 2008-01-10 09:23:10 +00:00
parent 7b8c388bbd
commit eb633a1f36
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ class task(osv.osv):
'sequence': fields.integer('Sequence'),
'type': fields.many2one('project.task.type', 'Type'),
'state': fields.selection([('draft', 'Draft'),('open', 'Open'),('pending', 'Pending'), ('cancelled', 'Cancelled'), ('done', 'Done')], 'State'),
'date_start': fields.date('Date'),
'date_start': fields.datetime('Date'),
'date_deadline': fields.datetime('Deadline'),
'date_close': fields.datetime('Date Closed', readonly=True),
'project_id': fields.many2one('project.project', 'Project', ondelete='cascade'),