Freelancer Profile Listing
-Template, Database access, Handler -Freelancer Database Table
This commit is contained in:
14
setupdb.sh
14
setupdb.sh
@@ -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
|
||||
|
Reference in New Issue
Block a user