UPGRADE (static_page)
=========================

< 1.37

Warning: you MUST perform these actions in this order.

Modify the basic page table:

 (MySQL)
   ALTER TABLE basic_page ADD is_file char(3) default 'no'
   ALTER TABLE basic_page ADD directory varchar(150) null

 (PostgreSQL)
   ALTER TABLE basic_page ADD is_file char(3) 
   ALTER TABLE basic_page ALTER is_file SET DEFAULT 'no'
   ALTER TABLE basic_page ADD directory varchar(150) null

Generate values for the 'directory' property by running:

   $ cd /path/to/site/pkg/static_page-x.xx/script
   $ perl save_with_directory.pl --website_dir=/path/to_site 


Additionally, you can only use version 1.38+ of this package if you
have SPOPS 0.41 or higher installed.

< 1.18

You will need to add a field to your 'basic_page' SQL table. On most
systems (MySQL), you simply need to execute the following SQL
statement:

    ALTER TABLE basic_page ADD main_template VARCHAR(40) NULL

If you don't, you'll only get errors since SPOPS will try to retrieve
information from a field named 'main_template' and that field won't
exist in your table.
