Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
API-TRM
/
9de8c09b895cb0ec2e82d7e53543f6a6ac27da93
/
.
/
TRM
/
back
/
app
/
models
/
__init__.py
blob: f726a1917e6d036b70cb444041458264ba446855 [
file
] [
log
] [
blame
]
from
sqlalchemy
.
ext
.
declarative
import
declarative_base
Base
=
declarative_base
()
# 先定义好 Base,再把所有 model import 进来,让 SQLAlchemy 一次性注册它们
from
.
users
import
User
from
.
topics
import
Topic
from
.
post
import
Post