Projet

Général

Profil

0001-manager-add-date-joined-to-user-table-fixes-7573.patch

Benjamin Dauvergne, 16 juin 2015 11:25

Télécharger (742 octets)

Voir les différences:

Subject: [PATCH] manager: add date joined to user table (fixes #7573)

 src/authentic2/manager/tables.py | 1 +
 1 file changed, 1 insertion(+)
src/authentic2/manager/tables.py
16 16
    ou = tables.Column()
17 17
    username = tables.Column()
18 18
    email = tables.Column()
19
    date_joined = tables.DateTimeColumn()
19 20

  
20 21
    class Meta:
21 22
        model = get_user_model()
22
-