I'm having trouble troubleshooting an error with portal::create and wondering if someone might offer a clue.
When creating a new user, I get this error:
ERROR: Relation "portal_pages" has no column "name"
SQL:
select portal__new(
null,
'Your dotLRN Workspace',
'474',
'468',
'1472',
'Page 1',
'portal',
now(),
null,
null,
NULL
);
while executing
"ns_pg_bind 0or1row nsdb0 {
select portal__new(
null,
:name,
:theme_id,
:la..."
When I look at my postgres portal_pages I do not find a column name
There is no "name" in portal_pages, only:
select * from portal_pages;
page_id | pretty_name | portal_id | layout_id | sort_key
I can't figure out what is calling for "name", and searching for "name" is an absurd proposition. Might someone have a clue where I might look next? Thanks! Bruce