using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Jiaowu.Api.Infrastructure.Persistence.Migrations.MySql { /// public partial class AddExperimentVenueNatureConstraints : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AllowedExperimentVenueNatures", table: "TeachingTaskScheduleConstraints", type: "int", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AllowedExperimentVenueNatures", table: "TeachingTaskScheduleConstraints"); } } }