CREATE TABLE auth.users ( id uuid DEFAULT gen_random_uuid() NOT NULL, aud character varying(255), role character varying(64), email character varying(255), encrypted_password character varying(255), confirmed_at timestamp with time zone, invited_at timestamp with time zone, confirmation_token character varying(255), confirmation_sent_at timestamp with time zone, recovery_token character varying(255), recovery_sent_at timestamp with time zone, email_change_token character varying(255), email_change character varying(255), email_change_sent_at timestamp with time zone, last_sign_in_at timestamp with time zone, raw_app_meta_data jsonb, raw_user_meta_data jsonb, is_super_admin boolean, created_at timestamp with time zone, updated_at timestamp with time zone ); ALTER TABLE auth.users OWNER TO autoapi_auth_admin; COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure schema.'; ALTER TABLE ONLY auth.users ADD CONSTRAINT users_email_key UNIQUE (email); ALTER TABLE ONLY auth.users ADD CONSTRAINT users_pkey PRIMARY KEY (id);