mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
8 lines
229 B
Python
8 lines
229 B
Python
from django.db import models
|
|
|
|
|
|
class OperatingSystem(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
description = models.TextField(blank=True, default="")
|
|
version = models.CharField(max_length=50, blank=True)
|