I'm using drupal-4.4.1 under postgresql.

When I created the recipe node, I successfully added cooking instructions. When I look in the database, I can see the instructions in node/body. However, the display of the recipe has the heading "cooking instructions", but doesn't have the instructions. The next item is "source".

Comments

JeffOllie’s picture

The sql tables do not have a field to store the instructions. If you run the following SQL you should be able to enter cooking instructions:

alter table recipe add column instructions text;
moshe weitzman’s picture

Anonymous’s picture