Sha256: e769bd9cb43dd67b224c7bd64b109a1c42178e9bc9264115682aa169af0fb178
Contents?: true
Size: 487 Bytes
Versions: 66
Compression:
Stored size: 487 Bytes
Contents
# frozen_string_literal: true class CreateAdminUserCredentials < ActiveRecord::Migration[7.0] def change create_table :admin_credentials do |t| t.string "external_id", index: { unique: true } t.references :admin, null: false, foreign_key: true t.string "public_key" t.string "nickname" t.bigint "sign_count", default: 0, null: false t.timestamps end change_table :admins do |t| t.column :webauthn_id, :string end end end
Version data entries
66 entries across 66 versions & 1 rubygems