tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
20210211173222_MSTruncateInstanceNames.cs
Go to the documentation of this file.
1using System;
2
3using Microsoft.EntityFrameworkCore.Migrations;
4
6{
10 public partial class MSTruncateInstanceNames : Migration
11 {
13 protected override void Up(MigrationBuilder migrationBuilder)
14 {
15 ArgumentNullException.ThrowIfNull(migrationBuilder);
16
17 migrationBuilder.AlterColumn<string>(
18 name: "Name",
19 table: "Instances",
20 maxLength: 100,
21 nullable: false,
22 oldClrType: typeof(string),
23 oldType: "nvarchar(max)",
24 oldMaxLength: 10000);
25 }
26
28 protected override void Down(MigrationBuilder migrationBuilder)
29 {
30 ArgumentNullException.ThrowIfNull(migrationBuilder);
31
32 migrationBuilder.AlterColumn<string>(
33 name: "Name",
34 table: "Instances",
35 type: "nvarchar(max)",
36 maxLength: 10000,
37 nullable: false,
38 oldClrType: typeof(string),
39 oldMaxLength: 100);
40 }
41 }
42}