rails generate model User email:string password:string
创建以下迁移脚本
class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| t.string :email t.string :password t.timestamps end end def self.down drop_table :users end end
什么是时间戳,为什么它被创建,当我不要求它创建?