tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
20200616175535_MYTopicTimeout.cs
Go to the documentation of this file.
1using System;
2
3using Microsoft.EntityFrameworkCore.Migrations;
4
6{
10 public partial class MYTopicTimeout : Migration
11 {
13 protected override void Up(MigrationBuilder migrationBuilder)
14 {
15 ArgumentNullException.ThrowIfNull(migrationBuilder);
16 migrationBuilder.AddColumn<uint>(
17 name: "TopicRequestTimeout",
18 table: "DreamDaemonSettings",
19 nullable: false,
20 defaultValue: 0u);
21 }
22
24 protected override void Down(MigrationBuilder migrationBuilder)
25 {
26 ArgumentNullException.ThrowIfNull(migrationBuilder);
27 migrationBuilder.DropColumn(
28 name: "TopicRequestTimeout",
29 table: "DreamDaemonSettings");
30 }
31 }
32}
override void Down(MigrationBuilder migrationBuilder)