Why is there both a "users" and also a "twill_users" table? I know the twill_users is for the admin/cms section. The users table doesn't seem to be used at all?
i
ifox
05/26/2023, 3:46 PM
It's coming from your Laravel application, not Twill
ifox
05/26/2023, 3:47 PM
Laravel ships with a default user model and table that you can delete
ifox
05/26/2023, 3:49 PM
it is a good practice to separate your frontend users from your admins though, if you intend to have users on the frontend
s
Scottnj
05/26/2023, 3:52 PM
That's what I suspected, thanks for confirming.
How can I modify or extend the twill_user model to add relations to it?
i
ifox
05/26/2023, 3:54 PM
twill.models.user can be set to your own class that extends the User model from Twill