mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-06 18:49:47 +08:00
10 lines
214 B
Python
10 lines
214 B
Python
from tortoise import Model, fields
|
|
|
|
|
|
class AbstractAdmin(Model):
|
|
username = fields.CharField(max_length=50, unique=True)
|
|
password = fields.CharField(max_length=200)
|
|
|
|
class Meta:
|
|
abstract = True
|