| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Infrastructure.Migrations.AppDb
- {
- /// <inheritdoc />
- public partial class AddCrewInviteCode : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "InviteCode",
- table: "Crew",
- type: "nvarchar(8)",
- maxLength: 8,
- nullable: true);
- migrationBuilder.CreateIndex(
- name: "IX_Crew_InviteCode",
- table: "Crew",
- column: "InviteCode",
- unique: true,
- filter: "[InviteCode] IS NOT NULL");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropIndex(
- name: "IX_Crew_InviteCode",
- table: "Crew");
- migrationBuilder.DropColumn(
- name: "InviteCode",
- table: "Crew");
- }
- }
- }
|