charasheet/src/character/models/equipment.py

10 lines
300 B
Python
Raw Normal View History

2022-10-29 00:32:18 +02:00
from django.db import models
from django_extensions.db.models import TimeStampedModel
from common.models import UniquelyNamedModel
class Weapon(UniquelyNamedModel, TimeStampedModel, models.Model):
damage = models.CharField(max_length=50, blank=True)
special = models.TextField(blank=True)