On 1/4/07, RW <[EMAIL PROTECTED]> wrote:
Hi there!
I've updated Roller from 3.0 to 3.1 RC2. Two problems occured:
1) During the execution of 300-to-310-migration.sql (PostgresSQL) I've got:
psql:300-to-310-migration.sql:49: ERROR: syntax error at or near "not"
at character 54
psql:300-to-310-migration.sql:49: LINE 1: ...ter table
rag_group_subscription alter column drop not null;
psql:300-to-310-migration.sql:49:
This error seems to have no further consequences. Roller run's fine.
There was a bug in the way we were dropping the "not null" requirement
for column ID w/PostgreSQL. If you plan on testing Roller's built in
Planet aggregator you'll need this:
alter table rag_group_subscription drop constraint
"rag_group_subscription_pkey";
alter table rag_group_subscription alter column id drop not null;
This fix will be in 3.1 RC3
- Dave