tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
20220814142535_SLAddProfiler.cs
Go to the documentation of this file.
1using System;
2
3using Microsoft.EntityFrameworkCore.Migrations;
4
6{
10 public partial class SLAddProfiler : Migration
11 {
13 protected override void Up(MigrationBuilder migrationBuilder)
14 {
15 ArgumentNullException.ThrowIfNull(migrationBuilder);
16
17 migrationBuilder.AddColumn<bool>(
18 name: "StartProfiler",
19 table: "DreamDaemonSettings",
20 nullable: false,
21 defaultValue: false);
22 }
23
25 protected override void Down(MigrationBuilder migrationBuilder)
26 {
27 ArgumentNullException.ThrowIfNull(migrationBuilder);
28
29 migrationBuilder.RenameTable(
30 name: "DreamDaemonSettings",
31 newName: "DreamDaemonSettings_down");
32
33 migrationBuilder.CreateTable(
34 name: "DreamDaemonSettings",
35 columns: table => new
36 {
37 Id = table.Column<long>(nullable: false)
38 .Annotation("Sqlite:Autoincrement", true),
39 AllowWebClient = table.Column<bool>(nullable: false),
40 SecurityLevel = table.Column<int>(nullable: false),
41 Port = table.Column<ushort>(nullable: false),
42 StartupTimeout = table.Column<uint>(nullable: false),
43 HeartbeatSeconds = table.Column<uint>(nullable: false),
44 AutoStart = table.Column<bool>(nullable: false),
45 InstanceId = table.Column<long>(nullable: false),
46 TopicRequestTimeout = table.Column<uint>(nullable: false),
47 AdditionalParameters = table.Column<string>(maxLength: 10000, nullable: false),
48 Visibility = table.Column<bool>(nullable: false),
49 DumpOnHeartbeatRestart = table.Column<bool>(nullable: false),
50 },
51 constraints: table =>
52 {
53 table.PrimaryKey("PK_DreamDaemonSettings", x => x.Id);
54 table.ForeignKey(
55 name: "FK_DreamDaemonSettings_Instances_InstanceId",
56 column: x => x.InstanceId,
57 principalTable: "Instances",
58 principalColumn: "Id",
59 onDelete: ReferentialAction.Cascade);
60 });
61
62 migrationBuilder.Sql(
63 $"INSERT INTO DreamDaemonSettings SELECT Id,AllowWebClient,SecurityLevel,Port,AutoStart,HeartbeatSeconds,StartupTimeout,InstanceId,TopicRequestTimeout,AdditionalParameters,Visibility,DumpOnHeartbeatRestart FROM DreamDaemonSettings_down");
64
65 migrationBuilder.DropTable(
66 name: "DreamDaemonSettings_down");
67
68 migrationBuilder.RenameTable(
69 name: "DreamDaemonSettings",
70 newName: "DreamDaemonSettings_down");
71
72 migrationBuilder.RenameTable(
73 name: "DreamDaemonSettings_down",
74 newName: "DreamDaemonSettings");
75 }
76 }
77}
Adds the option to start the profiler with DreamDaemon for SQLite.
override void Up(MigrationBuilder migrationBuilder)
override void Down(MigrationBuilder migrationBuilder)