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.

20220829091410_addConsentCommunicationAndWeeks.cs 674B

1234567891011121314151617181920212223
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace UnivateProperties_API.Migrations
  3. {
  4. public partial class addConsentCommunicationAndWeeks : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.AddColumn<bool>(
  9. name: "Consent",
  10. table: "CommunicationLog",
  11. nullable: false,
  12. defaultValue: false);
  13. }
  14. protected override void Down(MigrationBuilder migrationBuilder)
  15. {
  16. migrationBuilder.DropColumn(
  17. name: "Consent",
  18. table: "CommunicationLog");
  19. }
  20. }
  21. }