435 lines
20 KiB
C#
435 lines
20 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Moonlight.App.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class InitialCreate : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterDatabase()
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Images",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Uuid = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
|
|
Name = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Description = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ConfigFiles = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
StopCommand = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
StartupDetection = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
InstallScript = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
InstallDockerImage = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
InstallEntrypoint = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Startup = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Images", x => x.Id);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "LoadingMessages",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Message = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_LoadingMessages", x => x.Id);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Nodes",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Name = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Fqdn = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
TokenId = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Token = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
SftpPort = table.Column<int>(type: "int", nullable: false),
|
|
HttpPort = table.Column<int>(type: "int", nullable: false),
|
|
MoonlightDaemonPort = table.Column<int>(type: "int", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Nodes", x => x.Id);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
FirstName = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
LastName = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Email = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Password = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Address = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
City = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
State = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Country = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Status = table.Column<int>(type: "int", nullable: false),
|
|
TotpEnabled = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
TotpSecret = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
TokenValidTime = table.Column<DateTime>(type: "datetime(6)", nullable: false),
|
|
DiscordId = table.Column<long>(type: "bigint", nullable: false),
|
|
DiscordUsername = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
DiscordDiscriminator = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
CreatedAt = table.Column<DateTime>(type: "datetime(6)", nullable: false),
|
|
UpdatedAt = table.Column<DateTime>(type: "datetime(6)", nullable: false),
|
|
Admin = table.Column<bool>(type: "tinyint(1)", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Id);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "DockerImages",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Default = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
Name = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ImageId = table.Column<int>(type: "int", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_DockerImages", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_DockerImages_Images_ImageId",
|
|
column: x => x.ImageId,
|
|
principalTable: "Images",
|
|
principalColumn: "Id");
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ImageTags",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Name = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ImageId = table.Column<int>(type: "int", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ImageTags", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_ImageTags_Images_ImageId",
|
|
column: x => x.ImageId,
|
|
principalTable: "Images",
|
|
principalColumn: "Id");
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ImageVariables",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Key = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
DefaultValue = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ImageId = table.Column<int>(type: "int", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ImageVariables", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_ImageVariables_Images_ImageId",
|
|
column: x => x.ImageId,
|
|
principalTable: "Images",
|
|
principalColumn: "Id");
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "NodeAllocations",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Port = table.Column<int>(type: "int", nullable: false),
|
|
NodeId = table.Column<int>(type: "int", nullable: true),
|
|
ServerId = table.Column<int>(type: "int", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_NodeAllocations", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_NodeAllocations_Nodes_NodeId",
|
|
column: x => x.NodeId,
|
|
principalTable: "Nodes",
|
|
principalColumn: "Id");
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Servers",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Uuid = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
|
|
Name = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Cpu = table.Column<int>(type: "int", nullable: false),
|
|
Memory = table.Column<long>(type: "bigint", nullable: false),
|
|
Disk = table.Column<long>(type: "bigint", nullable: false),
|
|
ImageId = table.Column<int>(type: "int", nullable: false),
|
|
DockerImageIndex = table.Column<int>(type: "int", nullable: false),
|
|
OverrideStartup = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Installing = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
Suspended = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
MainAllocationId = table.Column<int>(type: "int", nullable: false),
|
|
NodeId = table.Column<int>(type: "int", nullable: false),
|
|
OwnerId = table.Column<int>(type: "int", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Servers", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Servers_Images_ImageId",
|
|
column: x => x.ImageId,
|
|
principalTable: "Images",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_Servers_NodeAllocations_MainAllocationId",
|
|
column: x => x.MainAllocationId,
|
|
principalTable: "NodeAllocations",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_Servers_Nodes_NodeId",
|
|
column: x => x.NodeId,
|
|
principalTable: "Nodes",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_Servers_Users_OwnerId",
|
|
column: x => x.OwnerId,
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ServerBackups",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Name = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Uuid = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
|
|
CreatedAt = table.Column<DateTime>(type: "datetime(6)", nullable: false),
|
|
Created = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
Bytes = table.Column<long>(type: "bigint", nullable: false),
|
|
ServerId = table.Column<int>(type: "int", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ServerBackups", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_ServerBackups_Servers_ServerId",
|
|
column: x => x.ServerId,
|
|
principalTable: "Servers",
|
|
principalColumn: "Id");
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ServerVariables",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
Key = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Value = table.Column<string>(type: "longtext", nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ServerId = table.Column<int>(type: "int", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ServerVariables", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_ServerVariables_Servers_ServerId",
|
|
column: x => x.ServerId,
|
|
principalTable: "Servers",
|
|
principalColumn: "Id");
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_DockerImages_ImageId",
|
|
table: "DockerImages",
|
|
column: "ImageId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ImageTags_ImageId",
|
|
table: "ImageTags",
|
|
column: "ImageId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ImageVariables_ImageId",
|
|
table: "ImageVariables",
|
|
column: "ImageId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_NodeAllocations_NodeId",
|
|
table: "NodeAllocations",
|
|
column: "NodeId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_NodeAllocations_ServerId",
|
|
table: "NodeAllocations",
|
|
column: "ServerId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ServerBackups_ServerId",
|
|
table: "ServerBackups",
|
|
column: "ServerId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Servers_ImageId",
|
|
table: "Servers",
|
|
column: "ImageId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Servers_MainAllocationId",
|
|
table: "Servers",
|
|
column: "MainAllocationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Servers_NodeId",
|
|
table: "Servers",
|
|
column: "NodeId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Servers_OwnerId",
|
|
table: "Servers",
|
|
column: "OwnerId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ServerVariables_ServerId",
|
|
table: "ServerVariables",
|
|
column: "ServerId");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_NodeAllocations_Servers_ServerId",
|
|
table: "NodeAllocations",
|
|
column: "ServerId",
|
|
principalTable: "Servers",
|
|
principalColumn: "Id");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Servers_Images_ImageId",
|
|
table: "Servers");
|
|
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_NodeAllocations_Nodes_NodeId",
|
|
table: "NodeAllocations");
|
|
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Servers_Nodes_NodeId",
|
|
table: "Servers");
|
|
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_NodeAllocations_Servers_ServerId",
|
|
table: "NodeAllocations");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "DockerImages");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ImageTags");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ImageVariables");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "LoadingMessages");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ServerBackups");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ServerVariables");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Images");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Nodes");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Servers");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "NodeAllocations");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Users");
|
|
}
|
|
}
|
|
}
|