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
什麼是時間戳,並得到它創建爲什麼,當我沒問它要創建時間戳獲得創建?
爲t。時間戳單個字段還是映射到您提到的上述列 – Jason
@Jason:這會生成['created_at'和'updated_at'](http://guides.rubyonrails.org/migrations.html#creating-a-模型)。 –
@Jason它爲您生成兩列,「自動」,因爲它說... –