Rails3 数据库 migration
文章平均质量分 77
kucss
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
rails3 数据 migration 之一 - migration 的解析
在我们深入分析migration之前,我们先看几个例子。class CreateProducts < ActiveRecord::Migration def up create_table :products do |t| t.string :name t.text :description t.timestamps end翻译 2012-02-02 23:20:52 · 2908 阅读 · 0 评论 -
rails3 数据 migration 之二 - 创建一个migration
2.1 新建一个模型(model)通过rails里面的脚手架可以创建一个模型。生成模型的同时,也同时生成了建表的migration。如果你生成model时指定了字段,migration里面也会生成对应的字段。例如:$ rails generate model Product name:string description:text生成的migration如下翻译 2012-02-12 14:48:05 · 4822 阅读 · 0 评论
分享