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:
parent
09a45080d2
commit
68e2a875da
1 changed files with 3 additions and 3 deletions
|
@ -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|
|
||||
|
|
Loading…
Reference in a new issue