mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
8 lines
195 B
Python
8 lines
195 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
class SyncGroupCache(models.Model):
|
|
groupname = models.CharField(max_length=254)
|
|
user = models.ForeignKey(User)
|