1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2024-10-17 09:42:44 +02:00

Compare commits

..

No commits in common. "5b7312109b0cd66c6c5a2e519a21274723f4cb63" and "d3e1bb901c429e0f42dad51991d7d26eeb4c6ca8" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ sealed class SqliteSchemaUpgradeTo9 : ISchemaUpgrade {
await SqliteSchema.CreateMessageAttachmentsTable(conn); await SqliteSchema.CreateMessageAttachmentsTable(conn);
await reporter.MainWork("Migrating message attachments...", 1, 3); await reporter.MainWork("Migrating message attachments...", 1, 3);
await conn.ExecuteAsync("INSERT INTO message_attachments (message_id, attachment_id) SELECT message_id, attachment_id FROM attachments a JOIN messages m USING (message_id)"); await conn.ExecuteAsync("INSERT INTO message_attachments (message_id, attachment_id) SELECT message_id, attachment_id FROM attachments");
await reporter.MainWork("Applying schema changes...", 2, 3); await reporter.MainWork("Applying schema changes...", 2, 3);
await conn.ExecuteAsync("DROP INDEX attachments_message_ix"); await conn.ExecuteAsync("DROP INDEX attachments_message_ix");

View File

@ -8,5 +8,5 @@ using DHT.Utils;
namespace DHT.Utils; namespace DHT.Utils;
static class Version { static class Version {
public const string Tag = "43.1.0.0"; public const string Tag = "43.0.0.0";
} }