Skip to content

Commit

Permalink
Merge pull request #166 from jihadkhawaja/end-to-end-encryption
Browse files Browse the repository at this point in the history
End to end bug fix
  • Loading branch information
jihadkhawaja committed Apr 11, 2024
2 parents dc87989 + b2396c2 commit 0d770d9
Show file tree
Hide file tree
Showing 20 changed files with 891 additions and 54 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using Microsoft.EntityFrameworkCore.Migrations;

#nullable disable

namespace Egroo.Server.Migrations
{
/// <inheritdoc />
public partial class allow_empty_pending_message_content : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "Content",
table: "UsersPendingMessages",
type: "text",
nullable: true,
oldClrType: typeof(string),
oldType: "text");
}

/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "Content",
table: "UsersPendingMessages",
type: "text",
nullable: false,
defaultValue: "",
oldClrType: typeof(string),
oldType: "text",
oldNullable: true);
}
}
}
Loading

0 comments on commit 0d770d9

Please sign in to comment.