| 1234567891011121314151617181920212223242526272829303132333435 |
- using Microsoft.EntityFrameworkCore.Migrations;
-
- #nullable disable
-
- namespace Diligent.WebAPI.Data.Migrations
- {
- public partial class UserUpdate : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "LinkedIn",
- table: "AspNetUsers",
- type: "nvarchar(max)",
- nullable: true);
-
- migrationBuilder.AddColumn<string>(
- name: "Position",
- table: "AspNetUsers",
- type: "nvarchar(max)",
- nullable: true);
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "LinkedIn",
- table: "AspNetUsers");
-
- migrationBuilder.DropColumn(
- name: "Position",
- table: "AspNetUsers");
- }
- }
- }
|