<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Incomplete DB upgrade from 7.3 GA4 to GA6 - how to correct?</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=120563385" />
  <subtitle>Incomplete DB upgrade from 7.3 GA4 to GA6 - how to correct?</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=120563385</id>
  <updated>2026-04-05T06:21:20Z</updated>
  <dc:date>2026-04-05T06:21:20Z</dc:date>
  <entry>
    <title>RE: Incomplete DB upgrade from 7.3 GA4 to GA6 - how to correct?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=120562153" />
    <author>
      <name>Manuel Castro</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=120562153</id>
    <updated>2021-02-04T10:50:35Z</updated>
    <published>2021-01-27T18:48:14Z</published>
    <summary type="html">&lt;p&gt;Problem solved by hand. Compared the two schemas and added the
  missing tables and columns. &lt;/p&gt;
&lt;p&gt;Maybe it can help someone:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-java"&gt;ALTER TABLE appbuilderappdatarecordlink ADD (
    groupid bigint,
    appbuilderappversionid bigint
);

CREATE TABLE appbuilderappversion (
    uuid_ character varying(75),
    appbuilderappversionid bigint NOT NULL,
    groupid bigint,
    companyid bigint,
    userid bigint,
    username character varying(75),
    createdate timestamp without time zone,
    modifieddate timestamp without time zone,
    appbuilderappid bigint,
    ddlrecordsetid bigint,
    ddmstructureid bigint,
    ddmstructurelayoutid bigint,
    version character varying(75)
);

ALTER TABLE public.appbuilderappversion OWNER TO liferay;
ALTER TABLE ONLY appbuilderappversion
    ADD CONSTRAINT appbuilderappversion_pkey PRIMARY KEY (appbuilderappversionid);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;</summary>
    <dc:creator>Manuel Castro</dc:creator>
    <dc:date>2021-01-27T18:48:14Z</dc:date>
  </entry>
  <entry>
    <title>Incomplete DB upgrade from 7.3 GA4 to GA6 - how to correct?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=120563384" />
    <author>
      <name>Manuel Castro</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=120563384</id>
    <updated>2021-01-27T18:14:42Z</updated>
    <published>2021-01-27T08:53:40Z</published>
    <summary type="html">&lt;p&gt;I started a project with 7.3 GA4 and at some point upgraded to GA6.
  Now I'm having some staging problems related to missing column on
  table. Comparing the DB from the upgraded project to a db from a clean
  install of GA6 there are some differences, like one table missing, at least.&lt;/p&gt;
&lt;p&gt;Is there any way to force a db model verification? The db is postgres.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</summary>
    <dc:creator>Manuel Castro</dc:creator>
    <dc:date>2021-01-27T08:53:40Z</dc:date>
  </entry>
</feed>
