| File: Db2Migrations\20260511233305_Initial.cs | Web Access |
| Project: src\playground\SqlServerEndToEnd\SqlServerEndToEnd.Common\SqlServerEndToEnd.Common.csproj (SqlServerEndToEnd.Common) |
using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace SqlServerEndToEnd.Common.Db2Migrations; /// <inheritdoc /> public partial class Initial : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Entries", columns: table => new { Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Entries", x => x.Id); }); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Entries"); } }