| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- 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);
- }
- }
- }
|