| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace bitforum.Migrations.User
- {
- /// <inheritdoc />
- public partial class initialUser : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "FullName",
- table: "AspNetUsers",
- type: "nvarchar(256)",
- maxLength: 256,
- nullable: true,
- oldClrType: typeof(string),
- oldType: "nvarchar(max)");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "FullName",
- table: "AspNetUsers",
- type: "nvarchar(max)",
- nullable: false,
- defaultValue: "",
- oldClrType: typeof(string),
- oldType: "nvarchar(256)",
- oldMaxLength: 256,
- oldNullable: true);
- }
- }
- }
|