I need to change my column type from date to datetime for an app I am making. How can I do this? I don't care about the data is its still being developed. I am using mySQL.
TIA
|
I need to change my column type from date to datetime for an app I am making. How can I do this? I don't care about the data is its still being developed. I am using mySQL. TIA |
||||
|
|
First in you terminal:
Then in your migration file:
|
|||||||||||||||||
|
|
There's a change_column method, just execute it in your migration with datetime as a new type.
|
|||
|
|
|
Also, if you're using Rails 3 you don't have to use the
|
|||||
|