using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FoodsharingSiegen.Server.Migrations { public partial class asd : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Created", table: "Prospects", type: "TEXT", nullable: false, defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); migrationBuilder.AddColumn( name: "Info", table: "Interactions", type: "TEXT", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Created", table: "Prospects"); migrationBuilder.DropColumn( name: "Info", table: "Interactions"); } } }