189 lines
6.6 KiB
C#
189 lines
6.6 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
using line_gestao_api.Data;
|
|
|
|
#nullable disable
|
|
|
|
namespace line_gestao_api.Migrations
|
|
{
|
|
[DbContext(typeof(AppDbContext))]
|
|
[Migration("20251217170445_AddMobileLines")]
|
|
partial class AddMobileLines
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "10.0.1")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("line_gestao_api.Models.MobileLine", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Cedente")
|
|
.HasMaxLength(150)
|
|
.HasColumnType("character varying(150)");
|
|
|
|
b.Property<string>("Chip")
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)");
|
|
|
|
b.Property<string>("Cliente")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("Conta")
|
|
.HasMaxLength(80)
|
|
.HasColumnType("character varying(80)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<DateTime?>("DataBloqueio")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<DateTime?>("DataEntregaCliente")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<DateTime?>("DataEntregaOpera")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<decimal?>("Desconto")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("FranquiaGestao")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("FranquiaLine")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("FranquiaVivo")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("GestaoVozDados")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<int>("Item")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Linha")
|
|
.HasMaxLength(30)
|
|
.HasColumnType("character varying(30)");
|
|
|
|
b.Property<decimal?>("LocacaoAp")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("Lucro")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<string>("Modalidade")
|
|
.HasMaxLength(80)
|
|
.HasColumnType("character varying(80)");
|
|
|
|
b.Property<string>("PlanoContrato")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<decimal?>("Skeelo")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<string>("Skil")
|
|
.HasMaxLength(80)
|
|
.HasColumnType("character varying(80)");
|
|
|
|
b.Property<string>("Solicitante")
|
|
.HasMaxLength(150)
|
|
.HasColumnType("character varying(150)");
|
|
|
|
b.Property<string>("Status")
|
|
.HasMaxLength(80)
|
|
.HasColumnType("character varying(80)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Usuario")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<decimal?>("ValorContratoLine")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("ValorContratoVivo")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("ValorPlanoVivo")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<string>("VencConta")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<decimal?>("VivoGestaoDispositivo")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("VivoNewsPlus")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<decimal?>("VivoTravelMundo")
|
|
.HasColumnType("numeric");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Linha")
|
|
.IsUnique();
|
|
|
|
b.ToTable("MobileLines");
|
|
});
|
|
|
|
modelBuilder.Entity("line_gestao_api.Models.User", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Email")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("character varying(120)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("character varying(120)");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Phone")
|
|
.IsRequired()
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Email")
|
|
.IsUnique();
|
|
|
|
b.ToTable("Users");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|