Skip to content

Commit

Permalink
Merge pull request #87 from Mteheran/develop
Browse files Browse the repository at this point in the history
ewmoving unncesary values in the model
  • Loading branch information
Mteheran authored Oct 27, 2023
2 parents 5ead876 + 01b422a commit a968ef4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion api/Migrations/20231022234155_indiginuosreservation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ protected override void Up(MigrationBuilder migrationBuilder)
Name = table.Column<string>(type: "character varying(150)", maxLength: 150, nullable: false),
Code = table.Column<string>(type: "text", nullable: true),
ProcedureType = table.Column<string>(type: "text", nullable: true),
AdministrativeAct = table.Column<string>(type: "text", nullable: true),
AdministrativeActType = table.Column<string>(type: "text", nullable: true),
AdministrativeActNumber = table.Column<int>(type: "integer", nullable: true),
AdministrativeActDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
Expand Down
1 change: 0 additions & 1 deletion api/Models/IndigenousReservation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ public class IndigenousReservation
public string Name { get; set; }
public string? Code { get; set; }
public string? ProcedureType { get; set; }
public string? AdministrativeAct { get; set; }
public string? AdministrativeActType { get; set; }
public int? AdministrativeActNumber { get; set; }
public DateTime? AdministrativeActDate { get; set; }
Expand Down

0 comments on commit a968ef4

Please sign in to comment.