using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace StuzkovakWeb.Migrations { /// public partial class Invites : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Invites", columns: table => new { Id = table.Column(type: "uuid", nullable: false), TeacherName = table.Column(type: "text", nullable: false), IsAccepted = table.Column(type: "boolean", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Invites", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Invites"); } } }