Hi everyone!
I have two groups of people that I need to enter into a database. The first collection, let's call it attendees, has the following attributes: lastName, firstName, emailAdd, registrationDate. The second collection, let's call it volunteers, has the same attributes as that of the attendees collection but with additional attributes: committee, volunteerDate, contactNumber.
Can I simply "extend" the attendees collection, adding the new attributes to create the volunteers collection? If so, how? Or would it be better to just have a collection containing all the attributes and just have an additional atteibute to differentiate an attendee from a volunteer?
Thanks for your insights.
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Our Appwrite organization is suspended
Please give support regarding this , no app is working now , please solve my issue and give support , no one is replying in message section or email.
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...