1
0

20210211211033_AdminOOCColor.cs 707 B

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