我的目标是启动我的 Postgres 数据库(我错误地删除了我所有的数据库) 我创建了一个 manage.py 文件:
aws-samples
我的 models.py 存在并且我删除了现有的迁移目录(使用 alembic 创建)
但是当我运行 from flask_script import Manager
from flask_migrate import Migrate, MigrateCommand
from config import Config
from app import app, db
app.config.from_object(Config)
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
migrate = Migrate(app, db)
manager = Manager(app)
manager.add_command('db', MigrateCommand)
我在我的代码中有一个错误 我在另一个 py 文件中有一个这样的查询:
python3 manage.py db init
错误是:
qry = "select * from answer;"
num_response = sqlio.read_sql_query(qry,connection)
当然它不存在,因为db是创建的但是没有表......
有什么办法可以解决这个问题?
我想迁移以添加我的表。