如何在Rails中将created_at值用作默认值

时间:2012-01-31 21:52:11

标签: ruby-on-rails-3.1

如何将我的一个数据库表设置为created_at作为默认值。我做了这个,但没有工作,我检查了数据库,代码的值为空。

class CreateEvents < ActiveRecord::Migration
  def change
   create_table :events do |t|
    t.string :title
    t.string :location
    t.text :description
    t.date :occurs_on
    t.string :code, :default => Event::created_at

    t.timestamps

  end
 end
end

0 个答案:

没有答案