Files
CyberPanel/examplePlugin/models.py

10 lines
190 B
Python
Raw Normal View History

2018-10-05 00:00:06 +05:00
from django.db import models
class ExamplePlugin(models.Model):
name = models.CharField(unique=True, max_length=255)
class Meta:
# db_table = "ExamplePlugin"
pass