using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace CredentialManager.Data.Migrations { /// public partial class AddOdbcFieldsToCredentialEntity : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "OdbcDsnName", table: "Credentials", type: "TEXT", maxLength: 100, nullable: true); migrationBuilder.AddColumn( name: "OdbcMode", table: "Credentials", type: "TEXT", maxLength: 20, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "OdbcDsnName", table: "Credentials"); migrationBuilder.DropColumn( name: "OdbcMode", table: "Credentials"); } } }