| 1234567891011121314151617181920212223242526272829 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Content.Server.Database.Migrations.Sqlite
- {
- /// <inheritdoc />
- public partial class LoadoutNames : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "entity_name",
- table: "profile_role_loadout",
- type: "TEXT",
- maxLength: 256,
- nullable: true);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "entity_name",
- table: "profile_role_loadout");
- }
- }
- }
|