1
0

20250211131517_LoadoutNames.cs 802 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace Content.Server.Database.Migrations.Sqlite
  4. {
  5. /// <inheritdoc />
  6. public partial class LoadoutNames : Migration
  7. {
  8. /// <inheritdoc />
  9. protected override void Up(MigrationBuilder migrationBuilder)
  10. {
  11. migrationBuilder.AddColumn<string>(
  12. name: "entity_name",
  13. table: "profile_role_loadout",
  14. type: "TEXT",
  15. maxLength: 256,
  16. nullable: true);
  17. }
  18. /// <inheritdoc />
  19. protected override void Down(MigrationBuilder migrationBuilder)
  20. {
  21. migrationBuilder.DropColumn(
  22. name: "entity_name",
  23. table: "profile_role_loadout");
  24. }
  25. }
  26. }