You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'll need to modify schema/schema.sql to add the table to our database (make sure you run make migrate from outside your container when you've added the table)
You'll need to create a file bounce/db/interests.py and add methods to insert and delete rows from the interests table you created (see users.py as an example of what you'll need to do)
intereststable should have only two columns for now:idfields for [other tables] (https://github.com/ubclaunchpad/bounce/blob/master/schema/schema.sql#L3))namecolumn should beUNIQUEschema/schema.sqlto add the table to our database (make sure you runmake migratefrom outside your container when you've added the table)bounce/db/interests.pyand add methods to insert and delete rows from theintereststable you created (see users.py as an example of what you'll need to do)