-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ability to toggle message counts, set the minimum length for …
…a message, and add new commands and more info to each command instead of the bare minimum
- Loading branch information
1 parent
fe22ea0
commit 80b5815
Showing
10 changed files
with
4,677 additions
and
67 deletions.
There are no files selected for viewing
4,220 changes: 4,220 additions & 0 deletions
4,220
src/Mewdeko/Database/Migrations/PostgreSql/20240814220002_MessageCountsAddition1.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
src/Mewdeko/Database/Migrations/PostgreSql/20240814220002_MessageCountsAddition1.cs
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,29 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace Mewdeko.Database.Migrations.PostgreSql | ||
{ | ||
/// <inheritdoc /> | ||
public partial class MessageCountsAddition1 : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.AddColumn<int>( | ||
name: "MinMessageLength", | ||
table: "GuildConfigs", | ||
type: "integer", | ||
nullable: false, | ||
defaultValue: 0); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropColumn( | ||
name: "MinMessageLength", | ||
table: "GuildConfigs"); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.