1.简介 在rails中用migration可以很方便的管理数据库的结构.可以创建数据库,创建表,删除表,添加字段,删除字段,整理数据. migration就是一系列的class,这些类都继承了ActiveRecord::Migration类. class CreateProducts < ActiveRecord::Migration def up create_table :products do |t| t.string :name t.column :description, :text…