leindfraust / ZeFer

An open-source publishing platform for everyone to tell their story
https://zefer.blog
MIT License
2 stars 1 forks source link

Implement schema of Organization #36

Closed leindfraust closed 4 months ago

leindfraust commented 4 months ago

Proposal:

model Organization {
  id        String   @id @default(cuid())
  name      String
  slug      String //defaults to a name + random 4 character letters
  followers Users[]
  authors   Users[]
  apiKeys   ApiKey[]
}

Review if this is okay or make changes for this