PasskeyAccountTable constructor

PasskeyAccountTable({
  1. TableRelation? tableRelation,
})

Implementation

PasskeyAccountTable({super.tableRelation})
  : super(tableName: 'serverpod_auth_idp_passkey_account') {
  updateTable = PasskeyAccountUpdateTable(this);
  authUserId = _i1.ColumnUuid(
    'authUserId',
    this,
  );
  createdAt = _i1.ColumnDateTime(
    'createdAt',
    this,
  );
  keyId = _i1.ColumnByteData(
    'keyId',
    this,
  );
  keyIdBase64 = _i1.ColumnString(
    'keyIdBase64',
    this,
  );
  clientDataJSON = _i1.ColumnByteData(
    'clientDataJSON',
    this,
  );
  attestationObject = _i1.ColumnByteData(
    'attestationObject',
    this,
  );
  originalChallenge = _i1.ColumnByteData(
    'originalChallenge',
    this,
  );
}