mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Added giveaway commands .ga start/end/cancel/reroll/list
This commit is contained in:
@@ -11,7 +11,7 @@ using Nadeko.Bot.Db;
|
||||
namespace NadekoBot.Db.Migrations.Sqlite
|
||||
{
|
||||
[DbContext(typeof(SqliteContext))]
|
||||
[Migration("20240424152943_giveaway")]
|
||||
[Migration("20240424203909_giveaway")]
|
||||
partial class giveaway
|
||||
{
|
||||
/// <inheritdoc />
|
||||
@@ -2289,6 +2289,9 @@ namespace NadekoBot.Db.Migrations.Sqlite
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<ulong>("ChannelId")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<DateTime>("EndsAt")
|
||||
.HasColumnType("TEXT");
|
||||
|
@@ -19,6 +19,7 @@ namespace NadekoBot.Db.Migrations.Sqlite
|
||||
.Annotation("Sqlite:Autoincrement", true),
|
||||
GuildId = table.Column<ulong>(type: "INTEGER", nullable: false),
|
||||
MessageId = table.Column<ulong>(type: "INTEGER", nullable: false),
|
||||
ChannelId = table.Column<ulong>(type: "INTEGER", nullable: false),
|
||||
Message = table.Column<string>(type: "TEXT", nullable: false),
|
||||
EndsAt = table.Column<DateTime>(type: "TEXT", nullable: false)
|
||||
},
|
@@ -2286,6 +2286,9 @@ namespace NadekoBot.Db.Migrations.Sqlite
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<ulong>("ChannelId")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<DateTime>("EndsAt")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
|
Reference in New Issue
Block a user