Domanda

This is a simple question. I want to create a column that stores the date of creation - not the datetime which created_at and created_on do. How do I do this?

Edit: I mean the date of the model record. So for example, when a user creates a micropost, I would like to store just the date, and not the datetime.

È stato utile?

Soluzione 2

Pavan answered my question in the comment. If you add a column with Date as its datatype, it will automatically set the field to date of creation.

Altri suggerimenti

Create an additional column inside table by creating an extra migration to add that extra column and save the below value while saving the record:

Time.now.s­trftime("%­Y-%m-%d")

Hope it helps :)

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top