1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00

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

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|