Skip to content

Commit

Permalink
#397 - Fix column type in the migration.
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed May 30, 2022
1 parent b5e7813 commit 96d15f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
name: "ExpenseTemplates",
columns: table => new
{
Id = table.Column<Guid>(type: "TEXT", nullable: false),
Id = table.Column<Guid>(nullable: false),
UserId = table.Column<string>(type: "TEXT", nullable: true),
Description = table.Column<string>(type: "TEXT", nullable: true),
Amount = table.Column<decimal>(type: "TEXT", nullable: true),
Expand Down

0 comments on commit 96d15f1

Please sign in to comment.