I have a PostgreSQL table:
CREATE TABLE essays (
id serial primary key,
content text
);
I inserted a few rows, then ran:
ALTER TABLE essays DROP COLUMN content;
How can I recover the data? I’m willing to use any means.
I have a PostgreSQL table:
CREATE TABLE essays (
id serial primary key,
content text
);
I inserted a few rows, then ran:
ALTER TABLE essays DROP COLUMN content;
How can I recover the data? I’m willing to use any means.