Sha256: cf6728de8991dfc55f4dc20dafed8457ad166a6d60ee63c08240e93d128d048b

Contents?: true

Size: 230 Bytes

Versions: 22

Compression:

Stored size: 230 Bytes

Contents

class CreateTokens < ActiveRecord::Migration[5.2]
  def change
    create_table :tokens do |t|
      t.string :refresh_token
      t.string :access_token
      t.datetime :expires_in
      t.datetime :expires_at
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
hubspot-api-client-2.0.0 sample-apps/webhooks-contacts-app/db/migrate/20191202170347_create_tokens.rb
hubspot-api-client-1.0.1 sample-apps/webhooks-contacts-app/db/migrate/20191202170347_create_tokens.rb