| 1234567891011121314151617181920212223242526272829 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Content.Server.Database.Migrations.Sqlite
- {
- /// <inheritdoc />
- public partial class SpawnPriorityPreference : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<int>(
- name: "spawn_priority",
- table: "profile",
- type: "INTEGER",
- nullable: false,
- defaultValue: 0);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "spawn_priority",
- table: "profile");
- }
- }
- }
|