AuthUserTable constructor

AuthUserTable({
  1. TableRelation? tableRelation,
})

Implementation

AuthUserTable({super.tableRelation})
  : super(tableName: 'serverpod_auth_core_user') {
  updateTable = AuthUserUpdateTable(this);
  createdAt = _i1.ColumnDateTime(
    'createdAt',
    this,
  );
  scopeNames = _i1.ColumnSerializable<Set<String>>(
    'scopeNames',
    this,
  );
  blocked = _i1.ColumnBool(
    'blocked',
    this,
  );
}