create table project_posts (
id serial NOT NULL PRIMARY KEY,
title varchar(100) not null,
body varchar(500) not null,
images bytea,
posted timestamp not null);
I ran this to create a table in my database and it worked fine, but the table doesn't appear under the tables folder and trying to select from it or drop it prompts the: "table does not exist" error.
The issue is that when I try to create the table again it tells me that the relationship project_posts
already exists. Not only do I have no clue what caused this is the first place, I have no idea how to get rid of the relationship so that I can attempt to create the table again.