tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
20240701235023_PGAddCronAutoUpdates.cs
Go to the documentation of this file.
1using System;
2
3using Microsoft.EntityFrameworkCore.Migrations;
4
6{
8 public partial class PGAddCronAutoUpdates : Migration
9 {
11 protected override void Up(MigrationBuilder migrationBuilder)
12 {
13 ArgumentNullException.ThrowIfNull(migrationBuilder);
14
15 migrationBuilder.AddColumn<string>(
16 name: "AutoUpdateCron",
17 table: "Instances",
18 type: "character varying(10000)",
19 maxLength: 10000,
20 nullable: false,
21 defaultValue: String.Empty);
22 }
23
25 protected override void Down(MigrationBuilder migrationBuilder)
26 {
27 ArgumentNullException.ThrowIfNull(migrationBuilder);
28
29 migrationBuilder.DropColumn(
30 name: "AutoUpdateCron",
31 table: "Instances");
32 }
33 }
34}