tgstation-server
6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
src
Tgstation.Server.Host
Database
Migrations
20230520203332_PGAddSystemChannels.cs
Go to the documentation of this file.
1
using
System;
2
3
using
Microsoft.EntityFrameworkCore.Migrations;
4
5
namespace
Tgstation.Server.Host.Database.Migrations
6
{
10
public
partial class
PGAddSystemChannels
:
Migration
11
{
13
protected
override
void
Up
(MigrationBuilder migrationBuilder)
14
{
15
ArgumentNullException.ThrowIfNull(migrationBuilder);
16
17
migrationBuilder.AddColumn<
bool
>(
18
name:
"IsSystemChannel"
,
19
table:
"ChatChannels"
,
20
type:
"boolean"
,
21
nullable:
false
,
22
defaultValue:
true
);
23
}
24
26
protected
override
void
Down
(MigrationBuilder migrationBuilder)
27
{
28
ArgumentNullException.ThrowIfNull(migrationBuilder);
29
30
migrationBuilder.DropColumn(
31
name:
"IsSystemChannel"
,
32
table:
"ChatChannels"
);
33
}
34
}
35
}
Migration
Tgstation.Server.Host.Database.Migrations.PGAddSystemChannels
Adds the IsSystemChannel chat channel option for PostgresSQL.
Definition
20230520203332_PGAddSystemChannels.cs:11
Tgstation.Server.Host.Database.Migrations.PGAddSystemChannels.Up
override void Up(MigrationBuilder migrationBuilder)
Definition
20230520203332_PGAddSystemChannels.cs:13
Tgstation.Server.Host.Database.Migrations.PGAddSystemChannels.Down
override void Down(MigrationBuilder migrationBuilder)
Definition
20230520203332_PGAddSystemChannels.cs:26
Tgstation.Server.Host.Database.Migrations
Definition
20180906135553_MSInitialCreate.cs:7
Generated by
1.9.8