Skip to content

Commit a77cc29

Browse files
committed
feat: add social links to member profiles
Add GitHub, Twitter/X, and Website URL fields to member profiles. Display social links with icons on public member profile pages.
1 parent 44ac941 commit a77cc29

File tree

13 files changed

+1167
-7
lines changed

13 files changed

+1167
-7
lines changed

docs/knowledges/data-models.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ members
5959
├── name TEXT NOT NULL
6060
├── bio TEXT
6161
├── imageUrl TEXT
62+
├── githubUrl TEXT
63+
├── twitterUrl TEXT
64+
├── websiteUrl TEXT
6265
├── pageContent TEXT
6366
├── viewCount INTEGER NOT NULL DEFAULT 0
6467
├── createdAt INTEGER NOT NULL
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ALTER TABLE "member" ADD COLUMN "github_url" text;--> statement-breakpoint
2+
ALTER TABLE "member" ADD COLUMN "twitter_url" text;--> statement-breakpoint
3+
ALTER TABLE "member" ADD COLUMN "website_url" text;

0 commit comments

Comments
 (0)