You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
466 B
18 lines
466 B
# -*- coding: utf-8 -*-
|
|
# @Time : 2023/11/21 14:33
|
|
# @Author : tx
|
|
# @File : file_uploads.py
|
|
# @Description :
|
|
from tortoise.models import Model
|
|
from tortoise import fields
|
|
|
|
|
|
class FileModel(Model):
|
|
id = fields.IntField(pk=True)
|
|
name = fields.CharField(255)
|
|
file_path = fields.CharField(255)
|
|
created_at = fields.DatetimeField(auto_now_add=True)
|
|
updated_at = fields.DatetimeField(auto_now=True)
|
|
|
|
class Meta:
|
|
table = "file_manager" |