Sha256: e34f03d28a83c3b472d6a4f860424f4997cfb3116badf79f90488d36a6fa90cd
Contents?: true
Size: 534 Bytes
Versions: 12
Compression:
Stored size: 534 Bytes
Contents
class CreateSsoClients < ActiveRecord::Migration enable_extension 'uuid-ossp' def change create_table :sso_clients, id: :uuid do |t| t.uuid "sso_session_id", index: true t.references "access_grant", index: true t.references "access_token", index: true t.references "application", index: true t.string "ip" t.string "agent" t.string "location" t.string "device" t.datetime "activity_at" t.timestamps null: false end end end
Version data entries
12 entries across 12 versions & 1 rubygems