UserInfoTable constructor
UserInfoTable({
- TableRelation? tableRelation,
Implementation
UserInfoTable({super.tableRelation})
: super(tableName: 'serverpod_user_info') {
userIdentifier = _i1.ColumnString(
'userIdentifier',
this,
);
userName = _i1.ColumnString(
'userName',
this,
);
fullName = _i1.ColumnString(
'fullName',
this,
);
email = _i1.ColumnString(
'email',
this,
);
created = _i1.ColumnDateTime(
'created',
this,
);
imageUrl = _i1.ColumnString(
'imageUrl',
this,
);
scopeNames = _i1.ColumnSerializable(
'scopeNames',
this,
);
blocked = _i1.ColumnBool(
'blocked',
this,
);
}