ChatMessageTable constructor

ChatMessageTable({
  1. TableRelation? tableRelation,
})

Implementation

ChatMessageTable({super.tableRelation})
    : super(tableName: 'serverpod_chat_message') {
  channel = _i1.ColumnString(
    'channel',
    this,
  );
  message = _i1.ColumnString(
    'message',
    this,
  );
  time = _i1.ColumnDateTime(
    'time',
    this,
  );
  sender = _i1.ColumnInt(
    'sender',
    this,
  );
  removed = _i1.ColumnBool(
    'removed',
    this,
  );
  attachments = _i1.ColumnSerializable(
    'attachments',
    this,
  );
}