forked from Ballsdex-Team/BallsDex-DiscordBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[config] /config silent, surpress wrong name and errors
* adding the silent config logic to countryballs/components * making a new sql migration file for silent config * adding silent to admin/resources * adding silent to core/models * adding the silent logic to config/components * adding the command /config silent * removing unnecessary comma * removing unnecessary whitespaces * removing /config silent, adding silent as an arg in /config channel * removing the unnecessary silent activation embed * Update command description --------- Co-authored-by: flaree <[email protected]>
- Loading branch information
1 parent
44573fc
commit 9e8f318
Showing
6 changed files
with
31 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- upgrade -- | ||
ALTER TABLE "guildconfig" ADD "silent" BOOL NOT NULL DEFAULT False; | ||
-- downgrade -- | ||
ALTER TABLE "guildconfig" DROP COLUMN "silent"; |