using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace QuotifyBE.Migrations { /// public partial class more_category_data : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Name", table: "Categories", type: "text", nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "text", oldNullable: true); migrationBuilder.AddColumn( name: "CreatedAt", table: "Categories", type: "timestamp with time zone", nullable: true); migrationBuilder.AddColumn( name: "Description", table: "Categories", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CreatedAt", table: "Categories"); migrationBuilder.DropColumn( name: "Description", table: "Categories"); migrationBuilder.AlterColumn( name: "Name", table: "Categories", type: "text", nullable: true, oldClrType: typeof(string), oldType: "text"); } } }