API
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

20190904111234_AgentAsRep.cs 637B

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