Exclude table from migration

I have an existing table from another schema from supabase's auth.
const authSchema = pgSchema("auth");

export const users = authSchema.table("users", {
  id: uuid("id").primaryKey(),
  email: varchar("email", { length: 255 }),
  raw_user_meta_data: jsonb("raw_user_meta_data").$type<RawUserMetaData>(),
});


I use this to access the data from the raw_user_meta_data of supabase. How do I exclude this users table from migrating?
Was this page helpful?