Schema Information

May 26, 2017 ยท View on GitHub

users

column_namedata_typedetails
idintegernot null, primary key
usernamestringnot null, indexed, unique
password_digeststringnot null
session_tokenstringnot null, indexed, unique
biotext
profile_pic_urltext
namestring

posts

column_namedata_typedetails
idintegernot null, primary key
user_idintegernot null, foreign key (users), indexed
photo_urltextnot null
descriptiontext
locationstring

followings

column_namedata_typedetails
idintegernot null, primary key
follower_idintegernot null, foreign key (users), indexed, unique (following_id)
following_idintegernot null, foreign key (users), indexed

likes

column_namedata_typedetails
idintegernot null, primary key
user_idintegernot null, foreign key (users), indexed, unique (post_id)
post_idintegernot null, foreign key (posts), indexed

comments

column_namedata_typedetails
idintegernot null, primary key
bodytextnot null
user_idintegernot null, foreign key (users), indexed
post_idintegernot null, foreign key (posts), indexed