Get rid of deprecation warning on dummy app migrations on Travis

This commit is contained in:
Ben Atkins 2015-01-20 16:20:47 -05:00
parent 09a45080d2
commit 68e2a875da
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ class SetUpTestTables < ActiveRecord::Migration
t.boolean :a_boolean
t.string :sacrificial_column
t.string :type
t.timestamps
t.timestamps :null => true
end
create_table :versions, :force => true do |t|
@ -63,7 +63,7 @@ class SetUpTestTables < ActiveRecord::Migration
create_table :wotsits, :force => true do |t|
t.integer :widget_id
t.string :name
t.timestamps
t.timestamps :null => true
end
create_table :fluxors, :force => true do |t|
@ -138,7 +138,7 @@ class SetUpTestTables < ActiveRecord::Migration
create_table :gadgets, :force => true do |t|
t.string :name
t.string :brand
t.timestamps
t.timestamps :null => true
end
create_table :customers, :force => true do |t|