I am creating a application about the history. But I am getting stuck when I need to create a field with django DateTimeField
to represent the date time for B.C.(aka Before Christ).
eg. Roman Empire is from 27 B.C. to 395 AD. How can I represent the from
and to
date with python datetime
or django DateTimeField
?
I need some further date calculation on these fields, so an integer
is not quite well for this, any idea?