From 8390bf0ec6bcba7b3a2f68234c6d49c01b9d920a Mon Sep 17 00:00:00 2001 From: jude Date: Tue, 22 Aug 2023 18:55:56 +0100 Subject: [PATCH] Fix migration. bump ver --- Cargo.lock | 2 +- Cargo.toml | 2 +- migrations/20230816145151_favorite_sounds.sql | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cbdf786..2abd566 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2129,7 +2129,7 @@ dependencies = [ [[package]] name = "soundfx-rs" -version = "1.5.10" +version = "1.5.11" dependencies = [ "dashmap", "dotenv", diff --git a/Cargo.toml b/Cargo.toml index fed35b2..a289d43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "soundfx-rs" description = "Discord bot for custom sound effects and soundboards" license = "AGPL-3.0-only" -version = "1.5.10" +version = "1.5.11" authors = ["jellywx "] edition = "2018" diff --git a/migrations/20230816145151_favorite_sounds.sql b/migrations/20230816145151_favorite_sounds.sql index da04a4c..e460f93 100644 --- a/migrations/20230816145151_favorite_sounds.sql +++ b/migrations/20230816145151_favorite_sounds.sql @@ -1,5 +1,3 @@ -ALTER TABLE users ADD PRIMARY KEY (`user`); - CREATE TABLE favorite_sounds ( user_id BIGINT UNSIGNED NOT NULL, sound_id INT UNSIGNED NOT NULL,