Masn
03/28/2022, 9:47 PMNeedle
03/28/2022, 9:47 PM/title
command!
We have solved your problem?
Click the button below to archive it.Scott P
03/28/2022, 9:59 PMpublic
is where you'd put your tables, most functions you create, etc. This works for most use cases. Consider this schema a playground for your project until you get to the point that you're ready to build it into an actual project.
auth
is where the details of your registered users are stored (amongst other things which are all related to authentication). You generally shouldn't mess with anything in here unless you're intending to e.g. delete a user from the DB entirely.
extensions
is where extension functions and such are stored. This can include things like the crypt
function, and if you enable an extension like PostGIS, this schema is where the functions for that are installed. In general, you wouldn't ever want to mess with this schema.
realtime
is where details of realtime updates are stored. I don't have a whole lot more information on this as I've not used realtime for quite some time. Someone else might have more info on this though.Needle
03/28/2022, 9:59 PMMasn
03/28/2022, 10:10 PMScott P
03/28/2022, 10:15 PMMasn
03/28/2022, 10:15 PM