13 lines
508 B
Python
13 lines
508 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
class Skill(models.Model):
|
|
title = models.CharField(max_length=200)
|
|
description = models.TextField()
|
|
creator = models.ForeignKey(User, on_delete=models.CASCADE, related_name='skills')
|
|
price = models.DecimalField(max_digits=10, decimal_places=2, default=0.00)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
updated_at = models.DateTimeField(auto_now=True)
|
|
|
|
def __str__(self):
|
|
return self.title |