Skip to content

Commit

Permalink
Add Username property to TechNote model and working on adding the abi…
Browse files Browse the repository at this point in the history
…lity to reply to comments
  • Loading branch information
granticusmaximus committed Jan 28, 2024
1 parent 89ab503 commit d3e2332
Show file tree
Hide file tree
Showing 21 changed files with 1,711 additions and 5 deletions.
Binary file modified Empire/EmpireDb.db
Binary file not shown.
Binary file added Empire/EmpireDb.db-shm
Binary file not shown.
Binary file added Empire/EmpireDb.db-wal
Binary file not shown.

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions Empire/Migrations/20240128222201_AddingUserNameToTicketComment.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using Microsoft.EntityFrameworkCore.Migrations;

#nullable disable

namespace Empire.Migrations
{
public partial class AddingUserNameToTicketComment : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Username",
table: "Notes",
type: "TEXT",
nullable: false,
defaultValue: "");
}

protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Username",
table: "Notes");
}
}
}
Loading

0 comments on commit d3e2332

Please sign in to comment.