listAccounts command

This commit is contained in:
ari melody 2025-01-20 19:11:16 +00:00
parent be5cd05d08
commit 5e493554dc
Signed by: ari
GPG key ID: CF99829C92678188
6 changed files with 50 additions and 9 deletions

View file

@ -16,7 +16,8 @@ CREATE TABLE arimelody.account (
username text NOT NULL UNIQUE,
password text NOT NULL,
email text,
avatar_url text
avatar_url text,
created_at TIMESTAMP DEFAULT current_timestamp
);
ALTER TABLE arimelody.account ADD CONSTRAINT account_pk PRIMARY KEY (id);