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