]> Raphaƫl G. Git Repositories - userbundle/blobdiff - Resources/config/doctrine/User.orm.yml
Add symfony 5.3 required PasswordAuthenticatedUserInterface interface
[userbundle] / Resources / config / doctrine / User.orm.yml
index a621be7abfd3b370de970a4a91e60324d3dc96f9..e0d926375d6d4d742d6e79d15ac4e18a1a21f99c 100644 (file)
@@ -12,9 +12,6 @@ Rapsys\UserBundle\Entity\User:
             type: string
             unique: true
             length: 254
-        pseudonym:
-            type: string
-            length: 32
         forename:
             type: string
             length: 32
@@ -28,6 +25,10 @@ Rapsys\UserBundle\Entity\User:
             type: boolean
             options:
                 default: true
+        disabled:
+            type: boolean
+            options:
+                default: false
         created:
             type: datetime
         updated:
@@ -43,3 +44,5 @@ Rapsys\UserBundle\Entity\User:
 #see if usefull: https://stackoverflow.com/questions/34523699/how-to-extend-doctrine-entity-in-another-bundle
 #            joinTable:
 #                name: groups_users
+    lifecycleCallbacks:
+        preUpdate: ['preUpdate']