]> source.dussan.org Git - redmine.git/commitdiff
Failed to run “rake db:migrate" command against clean database on MySQL5.7 (#27283).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 23 Sep 2018 14:43:09 +0000 (14:43 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 23 Sep 2018 14:43:09 +0000 (14:43 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@17515 e93f8b46-1217-0410-a6f0-8f06a7374b81

db/migrate/20150113194759_create_email_addresses.rb

index 22ad19e94c18ca00f6b7a8d3f75c3a3a31c8d019..001beda227178e64a850f286d699fa17ddee9ac9 100644 (file)
@@ -5,8 +5,8 @@ class CreateEmailAddresses < ActiveRecord::Migration[4.2]
       t.column :address, :string, :null => false
       t.column :is_default, :boolean, :null => false, :default => false
       t.column :notify, :boolean, :null => false, :default => true
-      t.column :created_on, :timestamp, :null => false
-      t.column :updated_on, :timestamp, :null => false
+      t.column :created_on, :datetime, :null => false
+      t.column :updated_on, :datetime, :null => false
     end
   end
 end