20220310173728_SpeciesMarkings.cs 699 B

1234567891011121314151617181920212223242526
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace Content.Server.Database.Migrations.Sqlite
  4. {
  5. public partial class SpeciesMarkings : Migration
  6. {
  7. protected override void Up(MigrationBuilder migrationBuilder)
  8. {
  9. migrationBuilder.AddColumn<string>(
  10. name: "markings",
  11. table: "profile",
  12. type: "TEXT",
  13. nullable: false,
  14. defaultValue: "");
  15. }
  16. protected override void Down(MigrationBuilder migrationBuilder)
  17. {
  18. migrationBuilder.DropColumn(
  19. name: "markings",
  20. table: "profile");
  21. }
  22. }
  23. }