Column itemid in mp_friendlyurls

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
6/22/2005 5:30:59 AM
Gravatar
Total Posts 49
Juliano Morais Barbosa

Column itemid in mp_friendlyurls

CREATE TABLE mp_friendlyurls (
    urlid integer DEFAULT nextval('"mp_friendlyurls_urlid_seq"'::text) NOT NULL,
    siteid integer NOT NULL,
    friendlyurl character varying(255),
    realurl character varying(255),
    ispattern boolean
);


CREATE UNIQUE INDEX mp_friendlyurls_idxurlid_idx ON mp_friendlyurls USING btree (itemid);


In mp_friendlyurls don´t have column itemid ???
6/22/2005 12:02:45 PM
Gravatar
Total Posts 18439

Re: Column itemid in mp_friendlyurls

yes, it should be urlid
You must sign in to post in the forums. This thread is closed to new posts.