Files
tbd-station-14/Content.Server.Database/Migrations/Sqlite/20220127165122_UnifyMore.cs
Pieter-Jan Briers a3aabf59ad Unify remaining DB model classes between SQLite and Postgres.
As part of this, the ban and unban table were renamed to server_* on SQLite to move them in line with Postgres. Data is preserved.
2022-01-27 18:12:09 +01:00

163 lines
6.9 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Sqlite
{
public partial class UnifyMore : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "server_ban",
columns: table => new
{
server_ban_id = table.Column<int>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
user_id = table.Column<Guid>(type: "TEXT", nullable: true),
address = table.Column<string>(type: "TEXT", nullable: true),
hwid = table.Column<byte[]>(type: "BLOB", nullable: true),
ban_time = table.Column<DateTime>(type: "TEXT", nullable: false),
expiration_time = table.Column<DateTime>(type: "TEXT", nullable: true),
reason = table.Column<string>(type: "TEXT", nullable: false),
banning_admin = table.Column<Guid>(type: "TEXT", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_server_ban", x => x.server_ban_id);
table.CheckConstraint("CK_server_ban_HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR user_id IS NOT NULL OR hwid IS NOT NULL");
});
migrationBuilder.CreateTable(
name: "server_unban",
columns: table => new
{
unban_id = table.Column<int>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
ban_id = table.Column<int>(type: "INTEGER", nullable: false),
unbanning_admin = table.Column<Guid>(type: "TEXT", nullable: true),
unban_time = table.Column<DateTime>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_server_unban", x => x.unban_id);
table.ForeignKey(
name: "FK_server_unban_server_ban_ban_id",
column: x => x.ban_id,
principalTable: "server_ban",
principalColumn: "server_ban_id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.Sql(@"
INSERT INTO server_ban (server_ban_id, user_id, address, hwid, ban_time, expiration_time, reason, banning_admin)
SELECT ban_id, user_id, address, hwid, ban_time, expiration_time, reason, banning_admin
FROM ban;");
migrationBuilder.Sql("INSERT INTO server_unban SELECT * FROM unban;");
migrationBuilder.CreateIndex(
name: "IX_player_user_id",
table: "player",
column: "user_id",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_connection_log_user_id",
table: "connection_log",
column: "user_id");
migrationBuilder.CreateIndex(
name: "IX_server_ban_address",
table: "server_ban",
column: "address");
migrationBuilder.CreateIndex(
name: "IX_server_ban_user_id",
table: "server_ban",
column: "user_id");
migrationBuilder.CreateIndex(
name: "IX_server_unban_ban_id",
table: "server_unban",
column: "ban_id",
unique: true);
migrationBuilder.DropTable(
name: "unban");
migrationBuilder.DropTable(
name: "ban");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_player_user_id",
table: "player");
migrationBuilder.DropIndex(
name: "IX_connection_log_user_id",
table: "connection_log");
migrationBuilder.CreateTable(
name: "ban",
columns: table => new
{
ban_id = table.Column<int>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
address = table.Column<string>(type: "TEXT", nullable: true),
ban_time = table.Column<DateTime>(type: "TEXT", nullable: false),
banning_admin = table.Column<Guid>(type: "TEXT", nullable: true),
expiration_time = table.Column<DateTime>(type: "TEXT", nullable: true),
hwid = table.Column<byte[]>(type: "BLOB", nullable: true),
reason = table.Column<string>(type: "TEXT", nullable: false),
user_id = table.Column<Guid>(type: "TEXT", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_ban", x => x.ban_id);
});
migrationBuilder.CreateTable(
name: "unban",
columns: table => new
{
unban_id = table.Column<int>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
ban_id = table.Column<int>(type: "INTEGER", nullable: false),
unban_time = table.Column<DateTime>(type: "TEXT", nullable: false),
unbanning_admin = table.Column<Guid>(type: "TEXT", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_unban", x => x.unban_id);
table.ForeignKey(
name: "FK_unban_ban_ban_id",
column: x => x.ban_id,
principalTable: "ban",
principalColumn: "ban_id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.Sql(@"
INSERT INTO ban (ban_id, user_id, address, hwid, ban_time, expiration_time, reason, banning_admin)
SELECT server_ban_id, user_id, address, hwid, ban_time, expiration_time, reason, banning_admin
FROM server_ban;");
migrationBuilder.Sql(@"INSERT INTO unban SELECT * FROM server_unban;");
migrationBuilder.DropTable(
name: "server_unban");
migrationBuilder.DropTable(
name: "server_ban");
migrationBuilder.CreateIndex(
name: "IX_unban_ban_id",
table: "unban",
column: "ban_id",
unique: true);
}
}
}