The current native implementation of the Supabase auth.users table schema is missing many of the columns that the table actually includes in Supabase.
Expected behavior
I expect at least some of the missing columns, such as email, phone, and created_at, to be added to the auth.users table schema, so we can avoid creating duplicate or redundant columns in a custom, public table we make ourselves.
This would also allow us to create more relations on the auth.users table.
What version of
drizzle-orm
are you using?0.36.0
What version of
drizzle-kit
are you using?0.27.0
Describe the Bug
The current native implementation of the Supabase
auth.users
table schema is missing many of the columns that the table actually includes in Supabase.Expected behavior
I expect at least some of the missing columns, such as
email
,phone
, andcreated_at
, to be added to theauth.users
table schema, so we can avoid creating duplicate or redundant columns in a custom, public table we make ourselves.This would also allow us to create more relations on the
auth.users
table.Environment & setup
No specific environment.