netbox/netbox/extras/tests/dummy_plugin/models.py

14 lines
225 B
Python

from django.db import models
class DummyModel(models.Model):
name = models.CharField(
max_length=20
)
number = models.IntegerField(
default=100
)
class Meta:
ordering = ['name']