recipe.mysql has:

CREATE TABLE recipe (
nid int(10) unsigned NOT NULL,
source varchar(255),
yield varchar(255),
preptime int(10) DEFAULT '0',
notes text,
instructions text,
PRIMARY KEY (nid)
);
ALTER TABLE `recipe` ADD `instructions` TEXT;
...

The ALTER TABLE sentence causes an error, this column already exists !

CommentFileSizeAuthor
recipe.mysql384 bytesAnonymous (not verified)

Comments

moshe weitzman’s picture

Anonymous’s picture