Freelancer Profile Listing

-Template, Database access, Handler
-Freelancer Database Table
This commit is contained in:
Tina_Azure
2023-04-02 00:27:02 +02:00
parent b90f72f61a
commit 04e41c2dce
4 changed files with 167 additions and 9 deletions

View File

@@ -17,6 +17,16 @@ sudo -u postgres psql -c "CREATE TABLE requests(
upFrontPaid boolean,
onDeliverPaid boolean
);
" cavecomm
sudo -u postgres psql -c "CREATE TABLE freelancers(
id INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
emailAddress text,
name text UNIQUE,
generalInformation text,
basicInformation text,
stripeAccountInformation text,
cryptoWalletAddresses text[][],
commissionLimit int,
templates text[][]
);
" cavecomm