好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

ror 2.1.2migration

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

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

 

查看更多关于ror 2.1.2migration的详细内容...

  阅读:39次