1234567891011121314151617181920212223242526272829303132333435 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- /// <inheritdoc />
- public partial class altrcompany : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "UserId",
- table: "Companies",
- type: "nvarchar(max)",
- nullable: false,
- oldClrType: typeof(long),
- oldType: "bigint");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<long>(
- name: "UserId",
- table: "Companies",
- type: "bigint",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "nvarchar(max)");
- }
- }
- }
|