Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewThien committed Nov 28, 2024
1 parent be576a5 commit e9741fb
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions app/shared/shared/jobs/models.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
from django.conf import settings
from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation
from django.contrib.contenttypes.models import ContentType
from django.db import models
from django.db.models.constraints import UniqueConstraint
from shared.data.models import Concept


class BaseModel(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)

class Meta:
abstract = True
from shared.mapping.models import BaseModel


class JobStage(models.Model):
Expand Down

0 comments on commit e9741fb

Please sign in to comment.