ror 2.1.2migration

class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      t.string :username
      t.timestamps
    end
  end

  def self.down
    drop_table :users
  end
end

新版迁移文件会生成如下的表结构

 

原文地址:https://www.cnblogs.com/lexus/p/1332970.html