summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-08-15 09:22:37 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-08-15 09:22:37 +0000
commit178a5e8e54e8c5976377f32cd71971aa6524dd9b (patch)
tree23314cdf4e4773c9907a0d53cab741d86ba55069 /db
parent5fffbdc0162c5454c4e2f3f9cb877a83b4de4483 (diff)
downloadredmine-178a5e8e54e8c5976377f32cd71971aa6524dd9b.tar.gz
redmine-178a5e8e54e8c5976377f32cd71971aa6524dd9b.zip
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null` (#905, #20533).
git-svn-id: http://svn.redmine.org/redmine/trunk@14505 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20150730122707_create_imports.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20150730122707_create_imports.rb b/db/migrate/20150730122707_create_imports.rb
index 8b58d06c8..b6bedfc96 100644
--- a/db/migrate/20150730122707_create_imports.rb
+++ b/db/migrate/20150730122707_create_imports.rb
@@ -7,7 +7,7 @@ class CreateImports < ActiveRecord::Migration
t.text :settings
t.integer :total_items
t.boolean :finished, :null => false, :default => false
- t.timestamps
+ t.timestamps :null => false
end
end
end