| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Infrastructure.Migrations.IdentityDb;
- /// <inheritdoc />
- public partial class InitIdentity : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Name",
- table: "AspNetUserTokens",
- type: "nvarchar(450)",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(128)",
- oldMaxLength: 128);
- migrationBuilder.AlterColumn<string>(
- name: "LoginProvider",
- table: "AspNetUserTokens",
- type: "nvarchar(450)",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(128)",
- oldMaxLength: 128);
- migrationBuilder.AlterColumn<string>(
- name: "ProviderKey",
- table: "AspNetUserLogins",
- type: "nvarchar(450)",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(128)",
- oldMaxLength: 128);
- migrationBuilder.AlterColumn<string>(
- name: "LoginProvider",
- table: "AspNetUserLogins",
- type: "nvarchar(450)",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(128)",
- oldMaxLength: 128);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Name",
- table: "AspNetUserTokens",
- type: "nvarchar(128)",
- maxLength: 128,
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(450)");
- migrationBuilder.AlterColumn<string>(
- name: "LoginProvider",
- table: "AspNetUserTokens",
- type: "nvarchar(128)",
- maxLength: 128,
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(450)");
- migrationBuilder.AlterColumn<string>(
- name: "ProviderKey",
- table: "AspNetUserLogins",
- type: "nvarchar(128)",
- maxLength: 128,
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(450)");
- migrationBuilder.AlterColumn<string>(
- name: "LoginProvider",
- table: "AspNetUserLogins",
- type: "nvarchar(128)",
- maxLength: 128,
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(450)");
- }
- }
|