Skip to content

Commit

Permalink
feat(envited.ascs.digital): add isPublished flag to company profile t…
Browse files Browse the repository at this point in the history
…able

Signed-off-by: Roy Scheeren <[email protected]>
  • Loading branch information
royscheeren committed Jan 25, 2024
1 parent 8395c0c commit 1bb10bf
Show file tree
Hide file tree
Showing 7 changed files with 1,269 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/envited.ascs.digital/common/database/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const profile = pgTable('profile', {
email: text('email'),
website: text('website'),
offerings: jsonb('offerings'),
isPublished: boolean('is_published').default(false),
})

export const companyCategory = pgTable('companyCategory', {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "profile" ADD COLUMN "is_published" boolean DEFAULT false;
Loading

0 comments on commit 1bb10bf

Please sign in to comment.