refactor: Refactor in_chat_requests table #35

Manually merged
awiteb merged 7 commits from awiteb/rename-chat-request-table-and-save-respnse-in-it into master 2024-07-30 10:39:04 +02:00 AGit
3 changed files with 23 additions and 7 deletions
Showing only changes of commit c8693eeb3e - Show all commits

View file

@ -47,7 +47,11 @@ impl IncomingChatExt for DatabaseConnection {
..Default::default() ..Default::default()
}) })
.on_conflict( .on_conflict(
OnConflict::columns([IncomingChatColumn::RecipientId, IncomingChatColumn::Sender]) OnConflict::columns([
IncomingChatColumn::RecipientId,
IncomingChatColumn::Sender,
IncomingChatColumn::AcceptedResponse,
])
.do_nothing() .do_nothing()
.to_owned(), .to_owned(),
) )

View file

@ -35,6 +35,9 @@ pub struct Model {
pub recipient_id: IdCol, pub recipient_id: IdCol,
/// Public key of the sender /// Public key of the sender
pub sender: PublicKey, pub sender: PublicKey,
/// Whether the chat response accepted or not.
/// This will be `None` if it is chat request, otherwise `bool`
pub accepted_response: Option<bool>,
/// The timestamp of the request, when it was received /// The timestamp of the request, when it was received
pub in_on: chrono::DateTime<Utc>, pub in_on: chrono::DateTime<Utc>,
} }

View file

@ -58,6 +58,12 @@ impl MigrationTrait for Migration {
.on_delete(ForeignKeyAction::Cascade), .on_delete(ForeignKeyAction::Cascade),
) )
.col(ColumnDef::new(IncomingChat::Sender).binary().not_null()) .col(ColumnDef::new(IncomingChat::Sender).binary().not_null())
.col(
ColumnDef::new(IncomingChat::AcceptedResponse)
.boolean()
.null()
.default(Option::<bool>::None),
)
.col( .col(
ColumnDef::new(IncomingChat::InOn) ColumnDef::new(IncomingChat::InOn)
.timestamp_with_time_zone() .timestamp_with_time_zone()
@ -74,6 +80,7 @@ impl MigrationTrait for Migration {
.table(IncomingChat::Table) .table(IncomingChat::Table)
.col(IncomingChat::RecipientId) .col(IncomingChat::RecipientId)
.col(IncomingChat::Sender) .col(IncomingChat::Sender)
.col(IncomingChat::AcceptedResponse)
.unique() .unique()
.to_owned(), .to_owned(),
) )
@ -88,5 +95,7 @@ enum IncomingChat {
RecipientId, RecipientId,
/// Public key of the sender /// Public key of the sender
Sender, Sender,
/// Whether the chat response accepted or not
AcceptedResponse,
InOn, InOn,
} }