Ajout de HelloFresh
This commit is contained in:
42
Models/LayoutDataContext.cs
Normal file
42
Models/LayoutDataContext.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace administration.Models;
|
||||
|
||||
public partial class LayoutDataContext : DbContext
|
||||
{
|
||||
public LayoutDataContext()
|
||||
{
|
||||
}
|
||||
|
||||
public LayoutDataContext(DbContextOptions<LayoutDataContext> options)
|
||||
: base(options)
|
||||
{
|
||||
}
|
||||
|
||||
public virtual DbSet<User> Users { get; set; }
|
||||
|
||||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||||
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263.
|
||||
=> optionsBuilder.UseSqlServer("Server=217.154.116.43,1433;Database=LayoutData;User Id=sa;Password=Mf33ksTRLrPKSqQ4cTXitgiSN6BPBt89;TrustServerCertificate=True;");
|
||||
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<User>(entity =>
|
||||
{
|
||||
entity.HasKey(e => e.Id).HasName("PK__Users__3214EC0774A20142");
|
||||
|
||||
entity.HasIndex(e => e.Username, "UX_Users_Username").IsUnique();
|
||||
|
||||
entity.Property(e => e.CreatedAt).HasDefaultValueSql("(sysdatetimeoffset())");
|
||||
entity.Property(e => e.PasswordHash).HasMaxLength(512);
|
||||
entity.Property(e => e.ResetToken).HasMaxLength(256);
|
||||
entity.Property(e => e.Username).HasMaxLength(100);
|
||||
});
|
||||
|
||||
OnModelCreatingPartial(modelBuilder);
|
||||
}
|
||||
|
||||
partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
|
||||
}
|
||||
Reference in New Issue
Block a user