| 123456789101112131415161718192021222324 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace Content.Server.Database.Migrations.Postgres
- {
- 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");
- }
- }
- }
|