Files
hamkadr/src/JobsMedical.Web/Migrations/20260604181750_UserProfileMedia.cs
T

72 lines
2.0 KiB
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace JobsMedical.Web.Migrations
{
/// <inheritdoc />
public partial class UserProfileMedia : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<byte[]>(
name: "Avatar",
table: "Users",
type: "bytea",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "AvatarContentType",
table: "Users",
type: "character varying(100)",
maxLength: 100,
nullable: true);
migrationBuilder.AddColumn<byte[]>(
name: "Resume",
table: "Users",
type: "bytea",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ResumeContentType",
table: "Users",
type: "character varying(120)",
maxLength: 120,
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ResumeFileName",
table: "Users",
type: "character varying(200)",
maxLength: 200,
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Avatar",
table: "Users");
migrationBuilder.DropColumn(
name: "AvatarContentType",
table: "Users");
migrationBuilder.DropColumn(
name: "Resume",
table: "Users");
migrationBuilder.DropColumn(
name: "ResumeContentType",
table: "Users");
migrationBuilder.DropColumn(
name: "ResumeFileName",
table: "Users");
}
}
}