AuthKeyTable constructor
AuthKeyTable({
- TableRelation? tableRelation,
Implementation
AuthKeyTable({super.tableRelation}) : super(tableName: 'serverpod_auth_key') {
userId = _i1.ColumnInt(
'userId',
this,
);
hash = _i1.ColumnString(
'hash',
this,
);
scopeNames = _i1.ColumnSerializable(
'scopeNames',
this,
);
method = _i1.ColumnString(
'method',
this,
);
}