using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace barkmanapi.Migrations { /// public partial class barcodestring : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "barcode", table: "inventory", type: "text", nullable: false, oldClrType: typeof(int), oldType: "integer"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "barcode", table: "inventory", type: "integer", nullable: false, oldClrType: typeof(string), oldType: "text"); } } }