5 lines
101 B
Python
5 lines
101 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
# 创建数据库实例,独立于应用
|
|
db = SQLAlchemy()
|