So, if you have already started using bender on a production site and
have been updating from CVS you will notice that the schema has
changed. The following will update your schema so that you
don't loose all of your data:
create table journals_text SELECT id,article from journals;
alter table journals drop article;
alter table journals_text add primary key (id);
Have fun.
-Brian
|