create initial models for tag, job and application

This commit is contained in:
aatish 2018-10-17 13:20:54 +05:45
commit c8536289fd
16 changed files with 411 additions and 0 deletions

5
jobs/date_utils.py Normal file
View file

@ -0,0 +1,5 @@
from datetime import datetime, timedelta
def after_30_days():
return datetime.now() + timedelta(days=30)