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
create table posts(post_id varchar(8) primary key, user_id int(11) not null, username varchar(30) not null, title varchar(500) not null, text_content varchar(1000) not null, course varchar(20) not null);
create table users(email varchar(40) not null, user_id int(11) primary key, username varchar(30) not null, personal_info varchar(1000));