| 123456789101112131415161718192021222324 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace Content.Server.Database.Migrations.Sqlite
- {
- public partial class AdminOOCColor : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "admin_ooc_color",
- table: "preference",
- type: "text",
- nullable: false,
- defaultValue: "#ff0000");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "admin_ooc_color",
- table: "preference");
- }
- }
- }
|