pensacola-programming / crud-app

Apache License 2.0
0 stars 1 forks source link

Backend Routes Needed #3

Open kangelopoulos opened 3 weeks ago

kangelopoulos commented 3 weeks ago

To do list item: Endpoints:

Schema: id - PK integer not null title - varchar not null date_created - date UTC not null date_due - date UTC completed - boolean not null group_id - FK integer not null

User: Endpoints:

Schema: id - PK integer not null email - varchar password - varchar first_name - varchar last_name - varchar

To do list group: Endpoints:

Schema: id - PK integer not null email - varchar password - varchar first_name - varchar last_name - varchar