forked from SpaceStation14-Shenanigans/Monolith
81730e2612
Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
25 lines
683 B
C#
25 lines
683 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Content.Server.Database.Migrations.Sqlite
|
|
{
|
|
public partial class BackpackPreference : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "backpack",
|
|
table: "profile",
|
|
type: "TEXT",
|
|
nullable: false,
|
|
defaultValue: "");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "backpack",
|
|
table: "profile");
|
|
}
|
|
}
|
|
}
|