1
0
mirror of https://github.com/bitwarden/server synced 2026-01-06 18:43:36 +00:00

Merge branch 'master' into EC-427-create-provider-types-msp-reseller-server-database

This commit is contained in:
Rui Tomé
2023-01-12 13:01:45 +00:00
committed by GitHub
151 changed files with 8073 additions and 4694 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,25 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.SqliteMigrations.Migrations;
public partial class AvatarColor : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "AvatarColor",
table: "User",
type: "TEXT",
maxLength: 7,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AvatarColor",
table: "User");
}
}

View File

@@ -1164,6 +1164,10 @@ namespace Bit.SqliteMigrations.Migrations
.HasMaxLength(30)
.HasColumnType("TEXT");
b.Property<string>("AvatarColor")
.HasMaxLength(7)
.HasColumnType("TEXT");
b.Property<DateTime>("CreationDate")
.HasColumnType("TEXT");