You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains the source code examples for my O'Reilly book [Flask Web Development](http://www.flaskbook.com).
3
+
## app
4
+
models.py 数据库
5
+
static 资源
6
+
templates html页面
5
7
6
-
The commits and tags in this repository were carefully created to match the sequence in which concepts are presented in the book. Please read the section titled "How to Work with the Example Code" in the book's preface for instructions.
8
+
9
+
## migrations
10
+
数据库迁移
11
+
python manage.py db init 创建迁移仓库
12
+
python manage.py db migrate -m "initial migration" 创建迁移脚步
0 commit comments