0
我有一個月度報告模型,我想將其設置爲特定日期(週期)。 這是我的模型:將Django的模型設置爲一個月中的特定日期?
class MonthlyReport(m.Model):
month = m.DateField() <= set to a specific day in a month
worker = m.ForeignKey('auth.User')
total = m.IntegerField()
cycle = m.DateField(blank=True, null=True)
approvedDate = m.DateTimeField(blank=True, null=True)
你是要求設置一個默認值還是在創建一個新對象的時候這麼做? – DRC