Web 开发避免不了经常修改表结构,手工修改表结构不仅容易出错,而且涉及到多人协作开发时,这么土的做法很不经济. Django 的第三方 app South 就是专门做数据库表结构自动迁移的.Jacob Kaplan-Moss 曾做过一次调查,South 名列最受欢迎的第三方 app.事实上,它现在已经俨然成为 Django 事实上的数据库表迁移标准,很多第三方 app 都会带 South migrations 脚本. South 最常用的功能要用起来也非常轻松. 安装配置 安装: pip in
模型元数据是“任何不是字段的数据”,比如排序选项(ordering),数据库表名(db_table)或者人类可读的单复数名称(verbose_name 和verbose_name_plural).在模型中添加class Meta是完全可选的,所有选项都不是必须的. class Book(models.Model): name =models.CharField(max_length=32) def __str__(self): return self.name class Author(mode
Django文档阅读 - Day2 Writing your first Django app, part 1 You can tell Django is installed and which version by running the following command in a shell prompt. $ python -m django --version Creating a project If this is your first time using Django, yo