Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Which version of rails you are using?? – Ashish Mar 4 '11 at 9:06

3 Answers

up vote 93 down vote accepted

First in you terminal:

rails g migration change_date_format_in_my_table

Then in your migration file:

class ChangeDateFormatInMyTable < ActiveRecord::Migration
  def self.up
   change_column :my_table, :my_column, :datetime
  end

  def self.down
   change_column :my_table, :my_column, :date
  end
end
share|improve this answer
3  
Asker never stated they were using Rails 3 so that generate command might not work. – Andrew Marshall Mar 4 '11 at 8:44
12  
You're right, I just assumed a beginner would choose the latest technology available, but that's, of course, unsure – apneadiving Mar 4 '11 at 8:46
2  
The question is tagged "ruby-on-rails-3" – Sucrenoir Feb 7 at 13:27
1  
@Sucrenoir Yeah the tag was added by apneadiving after he answered. – Jason Feb 26 at 22:52

There's a change_column method, just execute it in your migration with datetime as a new type.

change_column(:my_table, :my_column, :my_new_type)
share|improve this answer

Also, if you're using Rails 3 you don't have to use the up and down methods. You can just use change:

class ChangeFormatInMyTable < ActiveRecord::Migration
  def change
    change_column :my_table, :my_column, :my_new_type
  end
end
share|improve this answer
11  
The change method only works with reversible migrations. The code above would throw a ActiveRecord::IrreversibleMigration exception. Only methods in api.rubyonrails.org/classes/ActiveRecord/Migration/… should be used in the change method. – davekaro Jan 9 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.