mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-14 10:47:30 +08:00
10 lines
205 B
Python
10 lines
205 B
Python
from tortoise import Model, fields
|
|
|
|
|
|
class User(Model):
|
|
username = fields.CharField(max_length=20, unique=True)
|
|
password = fields.CharField(max_length=200)
|
|
|
|
class Meta:
|
|
abstract = True
|