Files
tbd-station-14/Content.Server.Database/Migrations/Sqlite/20220509060717_FlavorText.cs
2022-05-13 15:58:45 -07:00

27 lines
700 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Sqlite
{
public partial class FlavorText : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "flavor_text",
table: "profile",
type: "TEXT",
nullable: false,
defaultValue: "");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "flavor_text",
table: "profile");
}
}
}