remember me
This commit is contained in:
parent
dac3acfecf
commit
8629883f88
10 changed files with 278 additions and 96 deletions
|
@ -0,0 +1,13 @@
|
|||
using Femto.Modules.Auth.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
|
||||
namespace Femto.Modules.Auth.Data.Configurations;
|
||||
|
||||
public class LongTermSessionConfiguration : IEntityTypeConfiguration<LongTermSession>
|
||||
{
|
||||
public void Configure(EntityTypeBuilder<LongTermSession> builder)
|
||||
{
|
||||
builder.ToTable("long_term_session");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue