Cloud Hash Iortho Db - Pgsql - 6000 Users/Passwords Hashed
- Thread starter
- Thread Author
- #1
You must be logged in to see this link.
PG SQL
05/2024
PG SQL
HTML:
id integer NOT NULL,
email character varying(255),
crypted_password character varying(255),
password_salt character varying(255),
persistence_token character varying(255),
single_access_token character varying(255),
login_count integer,
failed_login_count integer,
last_request_at timestamp with time zone,
current_login_at timestamp with time zone,
last_login_at timestamp with time zone,
current_login_ip character varying(255),
last_login_ip character varying(255),
parse_id character varying(255),
is_admin boolean,
active boolean,
approved boolean,
confirmed boolean,
ios_subscribed boolean,
stripe_subscribed boolean,
android_subscribed boolean,
firebase_token text,
ios_token text,
android_token text,
created_by integer,
updated_by integer,
created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP,
perishable_token character varying(255),