11 lines
343 B
Python
11 lines
343 B
Python
from django.db import models
|
|
|
|
class Job(models.Model):
|
|
title = models.CharField(max_length=200)
|
|
company_name = models.CharField(max_length=200)
|
|
location = models.CharField(max_length=200)
|
|
description = models.TextField()
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.title |