- Agenti e CapoArea in Clienti_Import + TipologiaGestionale in Clienti
This commit is contained in:
1025
StandManager.Infrastructure/Migrations/20251218104848_ClienteTipologiaGestionale.Designer.cs
generated
Normal file
1025
StandManager.Infrastructure/Migrations/20251218104848_ClienteTipologiaGestionale.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,28 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace StandManager.Infrastructure.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class ClienteTipologiaGestionale : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "TipologiaGestionale",
|
||||
table: "Cliente",
|
||||
type: "nvarchar(max)",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TipologiaGestionale",
|
||||
table: "Cliente");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -84,6 +84,9 @@ namespace StandManager.Infrastructure.Migrations
|
||||
b.Property<Guid?>("TipologiaClienteId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<string>("TipologiaGestionale")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("AgenteId");
|
||||
|
||||
Reference in New Issue
Block a user