Remove Rails 5 deprecation warning.

This commit is contained in:
Guo Xiang Tan
2017-08-08 00:48:36 +09:00
parent 2e4b3e9b06
commit 1103ea7c4c
100 changed files with 108 additions and 108 deletions

View File

@ -3,7 +3,7 @@ class CreateUserFields < ActiveRecord::Migration
create_table :user_fields do |t|
t.string :name, null: false
t.string :field_type, null: false
t.timestamps
t.timestamps null: false
end
end
end