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