Flask-Migrate No Changes Detected to Schema on first migration
问题 I'm using Flask with Flask-SQLAlchemy and Flask-Migrate to create an application, however when I try to create a migration nothing happens. I've created two tables in app/models.py : from flask import current_app from . import db class Student(db.Model): __tablename__ = 'students' id = db.Column(db.Integer, primary_key=True) email = db.Column(db.String(64), unique=True, nullable=False) password_hash = db.Column(db.String(128)) def __init__(self, **kwargs): super(Student, self).__init__(*