Frank Boehme wrote: > # About to alter your database. Sure?y > # DBD::mysql::db do failed: Unknown column 'realm' in 'field list' at > ./sg0-to-s > # g1 line 53, <> line 1. > > Does that indicate any trouble to come?
I think you'll be fine, but I wonder why the realm column is missing in your sitegroup table. Database-upgrade should have added it. Best add it anyhow, to be on the safe side: ALTER TABLE sitegroup ADD COLUMN realm varchar(255) DEFAULT '' NOT NULL; INSERT INTO sitegroup (id,name,realm,admingroup) VALUES (1,'sg1','sg1',0); Emile --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
