mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
add: slot now has 1 more icon (wheat!), and multipliers have been modified to even out the gains change: betroll is improved (around 2% better payout), as 66 is now a winning number, not a losing one
34 lines
982 B
C#
34 lines
982 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace NadekoBot.Migrations.PostgreSql
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class rakeback : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "rakeback",
|
|
columns: table => new
|
|
{
|
|
userid = table.Column<decimal>(type: "numeric(20,0)", nullable: false),
|
|
amount = table.Column<decimal>(type: "numeric", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("pk_rakeback", x => x.userid);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "rakeback");
|
|
}
|
|
}
|
|
}
|