using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace OnlyPrompt.Backend.Migrations { /// public partial class PromptCreateDetails : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ExampleImageUrl", table: "Prompts", type: "text", nullable: true); migrationBuilder.AddColumn( name: "ExampleOutput", table: "Prompts", type: "text", nullable: true); migrationBuilder.AddColumn( name: "Price", table: "Prompts", type: "numeric", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ExampleImageUrl", table: "Prompts"); migrationBuilder.DropColumn( name: "ExampleOutput", table: "Prompts"); migrationBuilder.DropColumn( name: "Price", table: "Prompts"); } } }