डिफ़ॉल्ट फ़ील्ड नाम हैं :inserted_at
और :updated_at
लेकिन आप एक कीवर्ड सूची पास करके अपने फ़ील्ड नामों के साथ विलय कर सकते हैं
schema "users" do
field :name, :string
field :email, :string
timestamps([{:inserted_at,:created_at}])
end
डिफ़ॉल्ट फ़ील्ड नाम हैं :inserted_at
और :updated_at
लेकिन आप एक कीवर्ड सूची पास करके अपने फ़ील्ड नामों के साथ विलय कर सकते हैं
schema "users" do
field :name, :string
field :email, :string
timestamps([{:inserted_at,:created_at}])
end