Skip to content

Commit

Permalink
Removed Phone, City and State from user profile (#154)
Browse files Browse the repository at this point in the history
Removed Phone, City and State from user profile, and database, as we
don't need these
  • Loading branch information
noremacskich authored Sep 20, 2024
1 parent 8892ff7 commit 702185f
Show file tree
Hide file tree
Showing 12 changed files with 1,035 additions and 249 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
ExpressionId = table.Column<int>(type: "integer", nullable: false),
SectionTypeId = table.Column<int>(type: "integer", nullable: false),
ParentId = table.Column<int>(type: "integer", nullable: false),
ParentId = table.Column<int?>(type: "integer", nullable: true),
Name = table.Column<string>(type: "character varying(150)", nullable: false, maxLength: 150),
Content = table.Column<string>(type: "text", nullable: false)
},
Expand Down
Loading

0 comments on commit 702185f

Please sign in to comment.