'PSequel not showing table content on my 2020 mac

first i create db in terminal, then i go to PSequel and add a connection with the local host. after i create my table in the query and refresh it,

CREATE TABLE users (
    id serial PRIMARY key, 
    name VARCHAR(100),
    email text UNIQUE NOT NULL,
    entries BIGINT DEFAULT 0,
    joined TIMESTAMP NOT NULL
    
);

it doesnt show anything on the content tab. Im using a 2020 MAC enter image description here



Solution 1:[1]

Theres a problem with the software. i enede up using dbeaver. very helpful

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Ali