EmailAuthTable constructor

EmailAuthTable({
  1. TableRelation? tableRelation,
})

Implementation

EmailAuthTable({super.tableRelation})
    : super(tableName: 'serverpod_email_auth') {
  userId = _i1.ColumnInt(
    'userId',
    this,
  );
  email = _i1.ColumnString(
    'email',
    this,
  );
  hash = _i1.ColumnString(
    'hash',
    this,
  );
}