In a table I have this field
prepared boolean NOT NULL,
I try to drop column and do
alter table lcm.bnq
drop column prepared,
drop column put_freezer;
I get this mesage
ERROR: column "prepared" of relation "bnq" does not exist
I see column in the table.
I tried
alter table lcm.bnq_durabilities
drop column "prepared",
drop column put_freezer;
Get same result
Any Idea?