API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20201030063947_addFieldsToPayments.cs 883B

12345678910111213141516171819202122232425262728293031
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace UnivateProperties_API.Migrations
  3. {
  4. public partial class addFieldsToPayments : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.AddColumn<string>(
  9. name: "Checksum",
  10. table: "Payments",
  11. nullable: true);
  12. migrationBuilder.AddColumn<string>(
  13. name: "PayRequestId",
  14. table: "Payments",
  15. nullable: true);
  16. }
  17. protected override void Down(MigrationBuilder migrationBuilder)
  18. {
  19. migrationBuilder.DropColumn(
  20. name: "Checksum",
  21. table: "Payments");
  22. migrationBuilder.DropColumn(
  23. name: "PayRequestId",
  24. table: "Payments");
  25. }
  26. }
  27. }