using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PARR.DAL.Migrations { /// public partial class tblWeekendDaysCreate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "WeekendDays", columns: table => new { Id = table.Column(type: "uuid", nullable: false), Date = table.Column(type: "date", nullable: false) }, constraints: table => { table.PrimaryKey("PK_WeekendDays", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "WeekendDays"); } } }