using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace $REPO_NAME.Migrations { /// public partial class greets : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Greets", columns: table => new { Id = table.Column(type: "uuid", nullable: false), Amount = table.Column(type: "integer", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Greets", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Greets"); } } }