Use Ruby 1.8 hash-rocket syntax

This commit is contained in:
Matt Huggins 2015-02-01 16:28:54 -07:00
parent 81ef401b8f
commit b16f7e0490
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ class SetUpTestTables < ActiveRecord::Migration
end
create_table :whatchamajiggers, :force => true do |t|
t.string :owner_type, null: false
t.integer :owner_id, null: false
t.string :owner_type, :null => false
t.integer :owner_id, :null => false
t.string :name
end