supabase db pull) and then dumping the DB records into a SQL file (supabase db dump --data-only -f ./supabase/seed.sql), I encountered an error while trying to reset and seed the database. This error showed that some columns in two auth tables were missing. The auth.sessions table was missing the tag (text) column, and the auth.identities table was missing the provider_id (text) column.supabase db pull.supabase db reset these columns are added, and the dumped seed file worked. Is this intended or should these columns be added to the auth schema somewhere?