using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PersonnelDepartmentDatabaseImplement.Migrations { /// public partial class SecMig : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Telephone", table: "Departments", type: "bigint", nullable: false, oldClrType: typeof(int), oldType: "integer"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Telephone", table: "Departments", type: "integer", nullable: false, oldClrType: typeof(long), oldType: "bigint"); } } }