GoogleAccountTable constructor

GoogleAccountTable({
  1. TableRelation? tableRelation,
})

Implementation

GoogleAccountTable({super.tableRelation})
  : super(tableName: 'serverpod_auth_idp_google_account') {
  updateTable = GoogleAccountUpdateTable(this);
  authUserId = _i1.ColumnUuid(
    'authUserId',
    this,
  );
  created = _i1.ColumnDateTime(
    'created',
    this,
  );
  email = _i1.ColumnString(
    'email',
    this,
  );
  userIdentifier = _i1.ColumnString(
    'userIdentifier',
    this,
  );
}