Added Customer Token Model

This commit is contained in:
2016-09-01 23:45:51 -04:00
parent 1138b0d5c9
commit 63d969c844
3 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class CreateCustomerTokens < ActiveRecord::Migration
def change
create_table :customer_tokens do |t|
t.string :token
t.timestamp :expires_at
end
end
end