Displaying 1 result from an estimated 1 matches for "createappointments".
2011 Dec 10
1
ActiveRecord time and datetime
Hi,
Suppose I have a model class which has a time field:
class CreateAppointments < ActiveRecord::Migration
def change
create_table :appointments do |t|
t.string :name
t.datetime :startTime
t.datetime :endTime
t.string :description
t.timestamps
end
end
end
When I test drive it in rails console, I can input any value int he
startTime...