20150615222204_alter_column_article_versions_start_date.rb 276 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 class AlterColumnArticleVersionsStartDate < ActiveRecord::Migration def up change_table :article_versions do |t| t.change :start_date, :datetime end end def down change_table :article_versions do |t| t.change :start_date, :date end end end