Fix erroneous migration

pull/300/head
Rick Carlino 2016-12-05 09:17:51 -06:00
parent a0c3c03de6
commit 2e80097119
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
class CreateTokenExpirations < ActiveRecord::Migration[5.0]
def change
create_table :token_expirations do |t|
t.string :sub
t.number :exp
t.string :jti
t.string :sub
t.integer :exp
t.string :jti
t.timestamps
end