Scottnj - Why is there both a "users" and also ...
# ❓questions
s
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
It's coming from your Laravel application, not Twill
Laravel ships with a default user model and table that you can delete
it is a good practice to separate your frontend users from your admins though, if you intend to have users on the frontend
s
That's what I suspected, thanks for confirming. How can I modify or extend the twill_user model to add relations to it?
i
twill.models.user can be set to your own class that extends the User model from Twill