python - 《Flask Web 開發(fā)》 無法更新數(shù)據(jù)庫
問題描述
學(xué)習(xí)到《Flask Web開發(fā)》第八章時,運行代碼報錯。后來意識到User表中新增了一列,應(yīng)該更新數(shù)據(jù)庫,執(zhí)行
python manage.py db migrate -m 'initial migration'
結(jié)果報錯:alembic.util.exc.CommandError: Target database is not up to date.
這種錯誤先前沒有遇到過,網(wǎng)上找了一下也不理解。
相關(guān)代碼app/models.py:
from . import dbfrom werkzeug.security import generate_password_hash, check_password_hashfrom flask_login import UserMixinfrom . import login_managerfrom itsdangerous import TimedJSONWebSignatureSerializer as Serializerfrom flask import current_app@login_manager.user_loaderdef load_user(user_id): return User.query.get(int(user_id))class Role(db.Model): __tablename__ = ’roles’ id = db.Column(db.Integer, primary_key = True) name = db.Column(db.String(64), unique = True) users = db.relationship(’User’, backref = ’role’, lazy = ’dynamic’)def __repr__(self):return ’<Role %r>’ % self.nameclass User(UserMixin, db.Model): __tablename__ = ’users’ id = db.Column(db.Integer, primary_key = True) email = db.Column(db.String(64), unique=True, index=True) username = db.Column(db.String(64), unique = True, index = True) role_id = db.Column(db.Integer, db.ForeignKey(’roles.id’)) password_hash = db.Column(db.String(128)) confirmed = db.Column(db.Boolean, default=False)@property def password(self):raise AttributeError(’password is not a readable attribute’)@password.setter def password(self, password):self.password_hash = generate_password_hash(password)def verify_password(self, password):return check_password_hash(self.password_hash, password)def __repr__(self):return ’<User %r>’ % self.username def generate_confirmation_token(self, expiration=3600):s = Serializer(current_app.config[’SECRET_KEY’], expiration)return s.dump({’confirm’: self.id}) def confirm(self, token):s = Serializer(current_app.config[’SECRET_KEY’])try: data = s.loads(token)except: return Falseif data.get(’confirm’) != self.id: return Falseself.confirmed = Truedb.session.add(self)return True
求指導(dǎo)!!!
問題解答
回答1:刪除了migrations文件夾里一個版本后能正常更新了。
回答2:確定 Google 過 ?
Google 結(jié)果: https://www.google.com/search...
根據(jù)Google結(jié)果找到的SO 答案: http://stackoverflow.com/ques...
相關(guān)文章:
1. 我在導(dǎo)入模板資源時遇到無法顯示的問題,請老師解答下2. 運行python程序時出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯誤?3. thinkphp6使用驗證器 信息如何輸出到前端頁面4. javascript - h5微信中怎么禁止橫屏5. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入6. python - sqlalchemy更新數(shù)據(jù)報錯7. macos - 無法source activate python278. javascript - ajax請求不返回,關(guān)閉頁面時才返回。。。9. html5 - 前端面試碰到了一個緩存數(shù)據(jù)的問題,來論壇上請教一下10. 預(yù)訂金和尾款分別支付

網(wǎng)公網(wǎng)安備